aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-10-18 12:21:41 +0200
committerUrs Fleisch <ufleisch@users.sourceforge.net>2025-10-18 17:00:09 +0200
commitab31d11c8d1e04eb710aab7902d9564b4947de8c (patch)
tree14095a4aacaed930c6545fa87cabf88319519679
parent3c917caf52b6d14bfb548d4dc27d8601815edbe2 (diff)
Raise CMake minimum version to 3.10..3.31 range
CMake 3.10 was released in 2017. Amends 967aaf7af2f4aa2e9fed0edb2cbaca98b737eebe, fixes warning since CMake-3.31: CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 3.10 will be removed from a future version of CMake. Update the VERSION argument <min> value. Or, use the <min>...<max> syntax to tell CMake that the project requires at least <min> but has been updated to work with policies introduced by <max> or earlier. Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9e6589c7..2e631da5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.10..3.31)
project(taglib)