git repos / PlatformFolders

commit c49ef8af

branches: 3.2.X

Poul Sander · 2025-04-22 17:59
c49ef8afbd4ce843f5d3d10e49101ee7f3b69448 patch · browse files
parent 880fc26ff6c9a111019a4907b2b0492f08fd41a0

update CMake minimum version to make sure that we do not break on CMake 4

Changed files

M CMakeLists.txt before
diff --git a/CMakeLists.txt b/CMakeLists.txt index ceee0e9..fd805b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
-cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
-project(platform_folders VERSION 3.2.1 LANGUAGES CXX)
+cmake_minimum_required(VERSION 3.0.0..3.30.3 FATAL_ERROR)
+project(platform_folders VERSION 3.2.2 LANGUAGES CXX)
# Since it's off, the library will be static by default
option(BUILD_SHARED_LIBS "Build shared instead of static." OFF)