From ccf581ad9d241c7354c2576a43939afe44c0fa8d Mon Sep 17 00:00:00 2001 From: Ben Ashbaugh Date: Tue, 1 Apr 2025 12:09:24 -0700 Subject: [PATCH] bump the required CMake version to 3.16 The latest CI pipelines have updated to CMake 4.0, which drops support for CMake 3.5 and before. Updating the required CMake version to 3.16 should still support older operating systems, but allow the latest CI pipelines to run. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c00479ef..7657da61 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: MIT -cmake_minimum_required(VERSION 3.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.16 FATAL_ERROR) set_property(GLOBAL PROPERTY USE_FOLDERS ON) set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)