From dd4f7da1accd737b5a645f859e8f287a54d430d1 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Fri, 5 Sep 2025 14:47:46 +1000 Subject: [PATCH] cmake: cmake_minimum_required 3.10 (3.9 is deprecated for cmake 3.31 onwards) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f6b2bae3..8d2a81e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ # # When not using CMake to link against the shared library on windows define -DBOOST_NOWIDE_DYN_LINK -cmake_minimum_required(VERSION 3.9) +cmake_minimum_required(VERSION 3.10) # Version number starts at 10 to avoid conflicts with Boost version set(_version 11.3.0) if(BOOST_SUPERPROJECT_SOURCE_DIR)