summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Hainke2025-08-03 09:10:51 +0000
committerNick Hainke2025-08-03 09:26:34 +0000
commit0725c3d4aa1b7ebec013439cb57fda9dea3f1d5e (patch)
tree8942c92651a5d5cfdfb6d2a493467bf604b36217
parent950f83405a935395492d61c9972b5e5ca826eeee (diff)
downloadfirmware-utils-0725c3d4aa1b7ebec013439cb57fda9dea3f1d5e.tar.gz
build: require CMake >= 3.5 due to dropped legacy support
CMake has dropped compatibility with versions earlier than 3.5. Update the minimum required version in CMakeLists.txt to ensure compatibility with newer CMake releases and avoid configuration errors. Link: https://github.com/openwrt/firmware-utils/pull/48 Signed-off-by: Nick Hainke <vincent@systemli.org>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index eed563f..c2b7199 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
+CMAKE_MINIMUM_REQUIRED(VERSION 3.5)
PROJECT(firmware-utils C)
INCLUDE(GNUInstallDirs)