From 0725c3d4aa1b7ebec013439cb57fda9dea3f1d5e Mon Sep 17 00:00:00 2001 From: Nick Hainke Date: Sun, 3 Aug 2025 11:10:51 +0200 Subject: [PATCH] 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 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2