projects
/
project
/
ubus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b69c98
)
lua: build: require CMake >= 3.10 due to dropped legacy support
author
Hauke Mehrtens
<
[email protected]
>
Fri, 3 Oct 2025 17:49:29 +0000
(19:49 +0200)
committer
Hauke Mehrtens
<
[email protected]
>
Sat, 4 Oct 2025 10:12:15 +0000
(12:12 +0200)
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 <
[email protected]
>
Signed-off-by: Hauke Mehrtens <
[email protected]
>
lua/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/lua/CMakeLists.txt
b/lua/CMakeLists.txt
index e4821bf7fa4ffe0b59164d50aa0dfb0008cab041..bf45139b2e77cd733e7d21842053f3c8b5672c1e 100644
(file)
--- 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)