projects
/
project
/
libubox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eeb6fcf
)
lua: build: require CMake >= 3.10 due to dropped legacy support
author
Hauke Mehrtens
<hauke@hauke-m.de>
Fri, 3 Oct 2025 17:44:37 +0000
(19:44 +0200)
committer
Hauke Mehrtens
<hauke@hauke-m.de>
Sat, 4 Oct 2025 10:05:10 +0000
(12:05 +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 <hannu.nyman@iki.fi>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
lua/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/lua/CMakeLists.txt
b/lua/CMakeLists.txt
index 34c9ab187ff3bacc0cc528ac5e1e9612cd3eaec2..4ec4e392ecf2a406b96671bf295c5600e7fd69ec 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(uloop C)