From 2f67f6faa08aa4b20663d4cbaf063a79041947c1 Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Fri, 3 Oct 2025 23:38:37 +0200 Subject: [PATCH] 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 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aba9787..2e58bb7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.3) +cmake_minimum_required(VERSION 3.10) PROJECT(unetd C) -- 2.30.2