From: Soeren Apel Date: Thu, 15 May 2025 14:38:53 +0000 (+0200) Subject: CMakeLists.txt: Update version range from 2.8 to 3.31.5 to avoid abort X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=c0676b3493fda29d97c271cfeb76267019b35695;p=pulseview.git CMakeLists.txt: Update version range from 2.8 to 3.31.5 to avoid abort The error with CMake 4 on the github CI looks like this: CMake Error at CMakeLists.txt:22 (cmake_minimum_required): Compatibility with CMake < 3.5 has been removed from CMake. Update the VERSION argument value. Or, use the ... syntax to tell CMake that the project requires at least but has been updated to work with policies introduced by or earlier. Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index ec86073d..8580fa8e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ ## along with this program. If not, see . ## -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 2.8.12...3.31.5) project(pulseview C CXX)