From b86e5963ee345159cb6782a4524eed710f18c966 Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Tue, 21 Oct 2025 23:37:22 +0200 Subject: [PATCH] Fix cmake_minimum_required version range typo While CMake appears to accept the ".." notation, it does not correctly apply the policy_max version in that case. Amends d91ba101b65bc9e2a5506959295472ed42bde943 Signed-off-by: Andreas Sturmlechner --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d07fd5..3cb641f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.10..3.31) +cmake_minimum_required(VERSION 3.10...3.31) project(kColorPicker LANGUAGES CXX VERSION 0.3.1) set(QT_MIN_VERSION 5.15.2)