summary refs log tree commit diff
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-05-30 14:44:51 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-05-30 14:44:51 +0300
commit83cdd79e08093e942d2bb2076299d7bda54f35d7 (patch)
treef2f3cf3156ae51823d26b1fb1ec47bd97a5711a8
parentExplicitly define 5.7 as the minimum required Qt version (diff)
downloadnheko-83cdd79e08093e942d2bb2076299d7bda54f35d7.tar.xz
Show a warning for Qt < 5.7
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt

index d6835e38..38cc3b3d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ find_package(Qt5LinguistTools REQUIRED) if (Qt5Widgets_FOUND) if (Qt5Widgets_VERSION VERSION_LESS 5.7.0) message(STATUS "Qt version ${Qt5Widgets_VERSION}") - message(FATAL_ERROR "Minimum supported Qt5 version is 5.7!") + message(WARNING "Minimum supported Qt5 version is 5.7!") endif() endif(Qt5Widgets_FOUND)