From 59e4fe6aa4546b311f923e32927b3ad178e74541 Mon Sep 17 00:00:00 2001 From: Piotr Krysik Date: Sun, 24 Sep 2017 11:26:54 +0200 Subject: Getting rid of cmake policy warnings --- CMakeLists.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 83d50fc..887f49d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,6 +35,25 @@ set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "") list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules) +######################################################################## +# Set cmake policies. +######################################################################## +# This will suppress developer warnings during the cmake process that can occur +# if a newer cmake version than the minimum is used. + +if(POLICY CMP0026) + cmake_policy(SET CMP0026 OLD) +endif() +if(POLICY CMP0043) + cmake_policy(SET CMP0043 OLD) +endif() +if(POLICY CMP0045) + cmake_policy(SET CMP0045 OLD) +endif() +if(POLICY CMP0046) + cmake_policy(SET CMP0046 OLD) +endif() + ######################################################################## # Set version variables ( ######################################################################## -- cgit v1.2.3