diff options
| author | Hauke Mehrtens | 2025-10-03 17:49:29 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-10-04 10:12:15 +0000 |
| commit | ad2768bbc166b4dcb32665d7b3434d54150b2abc (patch) | |
| tree | 0244c84ff8ad2c0a35abe1f1814ba3fe2daa6252 | |
| parent | 2b69c9859946af32cbe89173b71bcecbd1761734 (diff) | |
| download | ubus-ad2768bbc166b4dcb32665d7b3434d54150b2abc.tar.gz | |
lua: build: require CMake >= 3.10 due to dropped legacy support
CMake version 4.0 and later require minimum version of 3.5 or later.
Update to minimum version 3.10 which is the last not deprecated minimum
version.
CMake 3.10 was released in November 2017 and is included in Ubuntu 18.04.
Suggested-by: Hannu Nyman <hannu.nyman@iki.fi>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | lua/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/CMakeLists.txt b/lua/CMakeLists.txt index e4821bf..bf45139 100644 --- a/lua/CMakeLists.txt +++ b/lua/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) PROJECT(ubus C) |