From 3f3d21324b1b9ffc992da976dcaf426d1352c763 Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 13 Nov 2020 14:30:04 +0100 Subject: [PATCH] Use CMake policies up to 3.17. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 80f2efe..ea0fc94 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # Support version 3.9 and above, but use policy settings up to 3.14. # 3.9 is needed for project description. -cmake_minimum_required(VERSION 3.9...3.14) +cmake_minimum_required(VERSION 3.9...3.17) # Ranges are supported from 3.12, set policy to current for < 3.12. if(${CMAKE_VERSION} VERSION_LESS 3.12) cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})