From 72f42134564eb5368f87db41c3d8241e3e0faca0 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Sun, 7 Sep 2025 08:27:48 +1000 Subject: [PATCH 1/2] CMake 3.15 or newer is required, and supported --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 43bb5ac1755..b825064bb36 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Distributed under the Boost Software License, Version 1.0. # See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt -cmake_minimum_required(VERSION 3.5...3.16) +cmake_minimum_required(VERSION 3.15) # The default build type must be set before project() if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR AND NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) From d1d10efd1896b8b2673cf5b5fffab477d4cb57ab Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Wed, 10 Sep 2025 11:28:18 +1000 Subject: [PATCH 2/2] CMake 3.14 or newer is required, and supported --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b825064bb36..6a9f0ba6f5e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Distributed under the Boost Software License, Version 1.0. # See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt -cmake_minimum_required(VERSION 3.15) +cmake_minimum_required(VERSION 3.14...3.16) # The default build type must be set before project() if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR AND NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)