From db1ea76a17799b0ca6fe3c25db8cc856567334b7 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Tue, 30 Sep 2025 19:37:27 +0200 Subject: [PATCH] Fix required CMake version `source_group(TREE` requires CMake 3.8 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6bf922d..bace101 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ # Official repository: https://github.com/boostorg/static_string # -cmake_minimum_required(VERSION 3.5...3.16) +cmake_minimum_required(VERSION 3.8...3.16) project(boost_static_string VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)