From 3e6628cfc7de752d47d42489b6903962660b2fdd Mon Sep 17 00:00:00 2001 From: juan-lunarg Date: Fri, 16 Jun 2023 14:05:46 -0600 Subject: [PATCH] cmake: Update minimum to 3.6 As of CMake 3.27: Compatibility with versions of CMake older than 3.5 is now deprecated and will be removed from a future version. Calls to cmake_minimum_required() or cmake_policy() that set the policy version to an older value now issue a deprecation diagnostic. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8b51ae96..1a40dd2f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.4...3.20 FATAL_ERROR) +cmake_minimum_required(VERSION 3.6...3.20 FATAL_ERROR) project(GLFW VERSION 3.4.0 LANGUAGES C)