From: Nick Hainke Date: Sun, 3 Aug 2025 09:10:51 +0000 (+0200) Subject: build: require CMake >= 3.5 due to dropped legacy support X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=0725c3d4aa1b7ebec013439cb57fda9dea3f1d5e;p=project%2Ffirmware-utils.git 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 --- 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)