diff options
author | Silvio Traversaro <silvio@traversaro.it> | 2025-03-04 18:04:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-04 18:04:39 +0100 |
commit | 3b52e651f385df00045dd8966407fd9de57fc94b (patch) | |
tree | 54d8ced88cf9236882fb8a9ecaea1b60643c874d | |
parent | 048bff80f2bd00bb651bcc3357cb6f76e3d76fd5 (diff) | |
parent | 1fa1e08fa6d9bddc62acf4a7cd2ca22d3951a11e (diff) | |
download | dlfcn-win32-master.tar.gz dlfcn-win32-master.tar.bz2 dlfcn-win32-master.zip |
Fix compatibility with CMake 4.0 by bumping policy_max in cmake_minimum_required to 3.10
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 160d787..204cac9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -1,4 +1,4 @@ | |||
1 | cmake_minimum_required(VERSION 2.8.11...3.2) | 1 | cmake_minimum_required(VERSION 2.8.11...3.10) |
2 | 2 | ||
3 | if (NOT DEFINED CMAKE_BUILD_TYPE) | 3 | if (NOT DEFINED CMAKE_BUILD_TYPE) |
4 | set (CMAKE_BUILD_TYPE Release CACHE STRING "Build type") | 4 | set (CMAKE_BUILD_TYPE Release CACHE STRING "Build type") |