summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Marangi2025-10-03 21:42:30 +0000
committerChristian Marangi2025-10-03 21:42:30 +0000
commitfeca1d341d4baa9579ec62762672aa0f20edf564 (patch)
tree52d018405717a9d2c131b01302978e05ef303656
parentc0df580adbd4d555ecc1962dbe88e91d75b67a4e (diff)
downloadlibnl-tiny-feca1d341d4baa9579ec62762672aa0f20edf564.tar.gz
CMakeLists: update cmake minimum required version to 3.10
New cmake version 4.0 requires at least 3.5 version as the minimum required version with it increased to 3.10 in to-be-released cmake versions. Set the minimum required version to 3.10 to future-proof for future cmake version. Suggested-by: Hannu Nyman <hannu.nyman@iki.fi> Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ef32dad..b9e342f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
+CMAKE_MINIMUM_REQUIRED(VERSION 3.10)
PROJECT(libnl-tiny C)
INCLUDE(GNUInstallDirs)