From 5282442e48c90492f847d6afa4968c50119846bd Mon Sep 17 00:00:00 2001 From: Pierre Wendling Date: Mon, 10 Apr 2023 11:59:39 -0400 Subject: [PATCH] CMake: Modernise asturm 2025-05-23: Just raise cmake_minimum_required for CMake 4. --- CMakeLists.txt | 1 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bd89fa1..783250e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.10) project(libdumb C) include(GNUInstallDirs) include(CheckCCompilerFlag)