diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-10-08 17:26:07 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-10-08 17:26:07 +0200 |
commit | 08d5a84cbdbb8937dbe4d43817e01d8ae00760cc (patch) | |
tree | b5a84553a6004cebfd922522166ff844577501a4 /CMakeLists.txt | |
parent | Merge remote-tracking branch 'origin/master' into cross-signing (diff) | |
download | nheko-08d5a84cbdbb8937dbe4d43817e01d8ae00760cc.tar.xz |
Fix issues with old qt and bump to 5.10
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 4348e819..2f83a865 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -142,9 +142,9 @@ if (APPLE) endif(APPLE) if (Qt5Widgets_FOUND) - if (Qt5Widgets_VERSION VERSION_LESS 5.9.0) + if (Qt5Widgets_VERSION VERSION_LESS 5.10.0) message(STATUS "Qt version ${Qt5Widgets_VERSION}") - message(WARNING "Minimum supported Qt5 version is 5.9!") + message(WARNING "Minimum supported Qt5 version is 5.10!") endif() endif(Qt5Widgets_FOUND) |