diff options
| author | Christian Marangi | 2025-11-05 15:42:36 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-11-05 15:42:36 +0000 |
| commit | 80503d94e356476250adaf1f669ee955ec26de76 (patch) | |
| tree | e72ecd0095e8c9611ab38477ba4158dd7f0ebfc9 | |
| parent | ce546f3ebff55a42fd89a6fe517953f7f72d883d (diff) | |
| download | opkg-lede-master.tar.gz | |
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.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | libopkg/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/CMakeLists.txt b/libopkg/CMakeLists.txt index 1b2a949..1b41133 100644 --- a/libopkg/CMakeLists.txt +++ b/libopkg/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) PROJECT(libopkg C) |