Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dschmidt/libcrashreporter-qt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Müller <fmueller@owncloud.com>2021-03-13 01:29:37 +0300
committerFabian Müller <fmueller@owncloud.com>2021-03-13 01:29:37 +0300
commit76611fd501a4cff4f34d75ce10843a26c40deaa9 (patch)
tree7016ac2f28fccae17cf6ac84211c55cfc0eb4444
parent5423c0ef54f99cea2628c2cb3f48e39e215f9961 (diff)
Fix policy warnings when using the latest CMake builds
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1adc43c..9861aa6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,6 +5,10 @@ if(POLICY CMP0071)
cmake_policy(SET CMP0071 NEW)
endif()
+if(POLICY CMP0063)
+ cmake_policy(SET CMP0063 NEW)
+endif()
+
option(ENABLE_GPL_CODE "Enable GPL-licensed depencencies of libcrashreporter-qt (dr.konqui integration)" OFF)
option(ENABLE_CRASH_REPORTER "Enable libcrashreporter-qt GUI component" ON)