From 124d55c97019c3f0fc4a0f1e9a6d1dd051d5c3a5 Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Tue, 1 Aug 2023 14:30:20 -0700 Subject: [PATCH] build: move cmake_minimum_required version to 3.9 (#4111) CMake 3.27 warns that "Compatibility with CMake < 3.5 will be removed from a future version of CMake." (https://cmake.org/cmake/help/latest/release/3.27.html#deprecated-and-removed-features) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 93733dd0..3e1797f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.4) +cmake_minimum_required(VERSION 3.9) if(POLICY CMP0091) cmake_policy(SET CMP0091 NEW) # Enable MSVC_RUNTIME_LIBRARY setting