Blob Blame History Raw
From c1439dad32221805c30d2b435fd3e9ccf989eacc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= <besser82@fedoraproject.org>
Date: Fri, 14 Apr 2017 11:01:58 +0200
Subject: [PATCH] Avoid several warnings in cmake-files from Qt5

---
 buildtools/CMakeLists.common | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/buildtools/CMakeLists.common b/buildtools/CMakeLists.common
index 55843f5..dbde70e 100644
--- a/buildtools/CMakeLists.common
+++ b/buildtools/CMakeLists.common
@@ -6,6 +6,12 @@ if( POLICY CMP0053 )
   cmake_policy( SET CMP0053 OLD )
 endif()
 
+# Avoid several warnings in cmake-files from Qt5.
+# CMP0043: Ignore COMPILE_DEFINITIONS_<Config> properties
+if( POLICY CMP0043 )
+  cmake_policy( SET CMP0043 OLD )
+endif()
+
 INCLUDE( "${CMAKE_SOURCE_DIR}/PROJECTINFO.cmake" )
 
 SET( BUILDTOOLS_DIR "buildtools/" )