From: Jonathan McDowell Date: Mon, 14 Jul 2025 19:26:26 +0000 (+0100) Subject: Update minimum required CMake version X-Git-Url: https://the.earth.li/gitweb/?a=commitdiff_plain;h=a519f1c180bfb739dfc7b53745400192729c9cef;p=onak.git 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. --- 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)