From 3b3501abb63d9aa59ccc20acf5f2c2be48190b25 Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Sat, 4 Oct 2025 00:06:50 +0200 Subject: [PATCH] upgraded: 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. Suggested-by: Hannu Nyman Signed-off-by: Christian Marangi --- upgraded/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgraded/CMakeLists.txt b/upgraded/CMakeLists.txt index 09cf472..99ef2e9 100644 --- a/upgraded/CMakeLists.txt +++ b/upgraded/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) PROJECT(upgraded C) FIND_PATH(ubox_include_dir libubox/uloop.h) -- 2.30.2