0
0
mirror of https://github.com/openwrt/luci.git synced 2025-10-16 00:25:46 +00:00
Files
luci/contrib/package/lucihttp/patches/001-cmake.patch
Hannu Nyman 721369b8bf lucihttp: adjust to cmake 4.x compatibility
New cmake versions require at least 3.5 as 'cmake_minimum_required'
in CMakeLists.txt. In future 3.10 will be required.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2025-10-07 18:56:21 +03:00

9 lines
161 B
Diff

--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.6)
+cmake_minimum_required(VERSION 3.10)
PROJECT(liblucihttp C)