From a519f1c180bfb739dfc7b53745400192729c9cef Mon Sep 17 00:00:00 2001 From: Jonathan McDowell Date: Mon, 14 Jul 2025 20:26:26 +0100 Subject: [PATCH] Update minimum required CMake version CMake 4.0 has dropped support for backwards compatibility with versions before 3.5. We don't actually need this, so update our range all the way up to 3.31, which is the version that will ship with Debian trixie. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed47ba3..9f83d95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.1..3.31 FATAL_ERROR) project(onak VERSION 0.6.3 LANGUAGES C) include(CheckSymbolExists) -- 2.39.5