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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2020-08-31 18:18:42 +0300
committerRobert Adam <dev@robert-adam.de>2020-08-31 18:30:53 +0300
commitfda302af9819d8391ea9972e97c9e2200bbfd520 (patch)
treef89f2dd99606c9fc47fd8454449da6078cbd719f /CMakeLists.txt
parent9697863c1f26731dc801d1abd291b3b2eaabe1b9 (diff)
BUILD(cmake): Added debug-dependency-search option
If the user uses -Ddebug-dependency-search=OFF, then the find_pkg function will not perform its searches using the QUIET flag causing a lot of (valuable) information to be printed to the screen.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f16a72adf..695362c2f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -47,6 +47,8 @@ option(overlay "Build overlay." ON)
option(packaging "Build package." OFF)
option(plugins "Build plugins." ON)
+option(debug-dependency-search "Prints extended information during the search for the needed dependencies" OFF)
+
# We support the "Debug" and "Release" configurations.
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
"Debug"