From c26778fa99ac1a282bb6815229811578a26b3c6a Mon Sep 17 00:00:00 2001 From: Tim Diekmann Date: Tue, 10 Oct 2017 14:23:42 +0200 Subject: [PATCH] Set cmake-policy CMP0048 to NEW --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc866c06..d53f01b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,6 +13,9 @@ # limitations under the License. cmake_minimum_required(VERSION 2.8.12) +if (POLICY CMP0048) + cmake_policy(SET CMP0048 NEW) +endif() if (POLICY CMP0054) # Avoid dereferencing variables or interpret keywords that have been # quoted or bracketed.