diff options
| author | Nick Hainke | 2025-08-03 09:10:51 +0000 |
|---|---|---|
| committer | Nick Hainke | 2025-08-03 09:26:34 +0000 |
| commit | 0725c3d4aa1b7ebec013439cb57fda9dea3f1d5e (patch) | |
| tree | 8942c92651a5d5cfdfb6d2a493467bf604b36217 | |
| parent | 950f83405a935395492d61c9972b5e5ca826eeee (diff) | |
| download | firmware-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.txt | 2 |
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) |