diff options
author | Gerald Combs <gerald@wireshark.org> | 2019-12-09 16:38:33 -0800 |
---|---|---|
committer | Anders Broman <a.broman58@gmail.com> | 2019-12-10 08:48:57 +0000 |
commit | 14e4759b562f615ecb8f32d3ceb46822be2e1f86 (patch) | |
tree | 116a683d1ae4027af3601e0d17f262989f4d51cf /CMakeLists.txt | |
parent | 50713161c39bec8a5b6979092860e3ac73bb66e0 (diff) | |
download | wireshark-14e4759b562f615ecb8f32d3ceb46822be2e1f86.tar.gz wireshark-14e4759b562f615ecb8f32d3ceb46822be2e1f86.tar.bz2 wireshark-14e4759b562f615ecb8f32d3ceb46822be2e1f86.zip |
Qt: Bump our minimum Qt version from 5.2. to 5.3.
Change-Id: Id6b39125a56b95b94d6a0bb6436bf7b2d131f924
Reviewed-on: https://code.wireshark.org/review/35385
Reviewed-by: Gerald Combs <gerald@wireshark.org>
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a7e44bfeca..c31eeb68e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1233,8 +1233,8 @@ if(GNUTLS_FOUND AND NOT GNUTLS_VERSION VERSION_LESS "3.4.0") endif() if (QT_FOUND) - if (Qt5Widgets_VERSION VERSION_LESS 5.2) - message(FATAL_ERROR "Qt 5.2 or later is required.") + if (Qt5Widgets_VERSION VERSION_LESS 5.3) + message(FATAL_ERROR "Qt 5.3 or later is required.") endif() if (Qt5Widgets_VERSION VERSION_GREATER 5.6 AND (CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")) |