From 3affdb8b50bfb4cb0437324dcee933c53cb1b4c0 Mon Sep 17 00:00:00 2001 From: Dan Dennedy Date: Wed, 2 Apr 2025 08:58:40 -0700 Subject: [PATCH] fix configuring with cmake 4 See https://cmake.org/cmake/help/latest/release/4.0.html#deprecated-and-removed-features > Compatibility with versions of CMake older than 3.5 has been removed. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 080191d..b5a29f4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.5) set(PACKAGE_VERSION_MAJOR "0") set(PACKAGE_VERSION_MINOR "3")