From f8238bcf189027535408124eb23a70bfa30b1f67 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Sat, 6 Sep 2025 12:56:49 +0200 Subject: [PATCH] Increase CMake version range to 3.20 Avoids deprecation warnings with CMake 3.31+ --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f6b2bae3..a4f46560 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.9...3.20) # Version number starts at 10 to avoid conflicts with Boost version set(_version 11.3.0) if(BOOST_SUPERPROJECT_SOURCE_DIR)