diff options
| author | Christian Marangi | 2025-11-05 15:41:57 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-11-05 15:41:57 +0000 |
| commit | ce546f3ebff55a42fd89a6fe517953f7f72d883d (patch) | |
| tree | 123de2a0282e5860517ae47f75533ac807c03617 | |
| parent | 988399770af1acc284fa6e9939684ce1e2b4bdac (diff) | |
| download | opkg-lede-ce546f3ebff55a42fd89a6fe517953f7f72d883d.tar.gz | |
opkg: CMakeLists: update cmake minimum required version to 3.10
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-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 22b04a5..9fe9629 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) PROJECT(opkg-cl C) |