From 884788ec43689e3444fa6379764fcfc14f0ff7da Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Thu, 11 Sep 2025 09:28:10 +0200 Subject: [PATCH] Update minimum CMake version to 3.9 BoostRoot uses `CMAKE_MATCH_` which only exists since CMake 3.9 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 43bb5ac17555..ee36914301c4 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.9...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)