From 83cdd79e08093e942d2bb2076299d7bda54f35d7 Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Tue, 30 May 2017 14:44:51 +0300 Subject: [PATCH] Show a warning for Qt < 5.7 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)