From 3c55c47829d2efbfb172692e89456d4908e40991 Mon Sep 17 00:00:00 2001 From: Kostis Sagonas Date: Fri, 12 Sep 2025 22:00:45 +0200 Subject: [PATCH] Bump min cmake version to 3.10 (from 3.3) Current cmake is at least 3.25.1 (or later) in Linux distributions, and some recent ones (e.g. on Ubuntu 24.04) produce warnings when they see a specification of such an ancient min cmake version. This PR silences these warnings. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9c1e7be..5adcc92b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # Copyright (C) Eta Scale AB. Licensed under the Eta Scale Open Source License. See the LICENSE file for details. -cmake_minimum_required(VERSION 3.3) +cmake_minimum_required(VERSION 3.10) project(ArgoDSM VERSION 0.1)