From 7825292317556254038afd2e6216902eeccfeff3 Mon Sep 17 00:00:00 2001 From: Simon Rit Date: Mon, 22 Jul 2024 08:05:02 +0200 Subject: [PATCH] COMP: Increased min cmake from 3.9.5 to 3.16.3 --- CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4dd7e6f72..f90420fa6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,15 +3,12 @@ #========================================================= # Respect the CMAKE_CXX_STANDARD flags when building for # ITKv5 or C++11. -cmake_minimum_required(VERSION 3.9.5 FATAL_ERROR) +cmake_minimum_required(VERSION 3.16.3 FATAL_ERROR) ## Only policies introduced after the cmake_minimum_required ## version need to explicitly be set to NEW. ## Refer to https://cmake.org/cmake/help/v3.11/manual/cmake-policies.7.html set(CMAKE_POLICIES - CMP0070 - CMP0071 - CMP0072 CMP0135) foreach(p ${CMAKE_POLICIES})