From d0e24a49e79f32f042b2652f752a6c48c312c440 Mon Sep 17 00:00:00 2001 From: Ben Ashbaugh Date: Tue, 1 Apr 2025 12:15:12 -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 dd95404..b055038 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(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) set(CMAKE_CXX_STANDARD 14)