From: Christian Marangi Date: Wed, 5 Nov 2025 15:32:21 +0000 (+0100) Subject: CMakeLists: update cmake minimum required version to 3.10 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=ba73bc4672ec936505f1f53de954370e0a411422;p=project%2Fopkg-lede.git 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/CMakeLists.txt b/CMakeLists.txt index 26230b3..8432c96 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) PROJECT(opkg C)