From: Christian Marangi Date: Wed, 5 Nov 2025 15:41:57 +0000 (+0100) Subject: opkg: CMakeLists: update cmake minimum required version to 3.10 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=ce546f3ebff55a42fd89a6fe517953f7f72d883d;p=project%2Fopkg-lede.git 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 --- 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)