From 2772a446bd46d772a379d42be2c986bc23455c08 Mon Sep 17 00:00:00 2001 From: sowle Date: Wed, 6 Dec 2023 16:33:35 +0100 Subject: [PATCH] CMakeLists: minmum CMake version was pushed up to 3.5 to avoid support warnings (2) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5bcaad54..f4c54258 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -246,7 +246,7 @@ elseif(NOT MSVC) endif() if(BUILD_GUI) - cmake_minimum_required(VERSION 2.8.11) + cmake_minimum_required(VERSION 3.5) find_package(Qt5Widgets REQUIRED) endif()