summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Marangi2025-10-03 21:37:57 +0000
committerChristian Marangi2025-10-03 21:37:57 +0000
commit12858e2878efe973049bc9fdbaf48860b9747ce3 (patch)
tree3abaf6219c7b5c91b4e0036dea60d6a40c5b39cb
parente8cd820cdbb8fba990fd79efda90c5dc10d8e45c (diff)
downloadfstools-12858e2878efe973049bc9fdbaf48860b9747ce3.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 0656786..e138f98 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.6)
+cmake_minimum_required(VERSION 3.10)
PROJECT(fs-tools C)
ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations -Wno-format-truncation)