summaryrefslogtreecommitdiffstats
path: root/cmake/FindWrapSystemHarfbuzz.cmake
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2020-06-26 18:15:48 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-06-26 22:14:38 +0200
commitcf3cef1ef5d83e6d9a35bdcb27d34ce4a8d9f0e0 (patch)
tree9b2634d4f397727ebcf874cd69ecd57aa90065cd /cmake/FindWrapSystemHarfbuzz.cmake
parent2efd0fbc327b82bceada89753c07b7374ee0a05f (diff)
CMake: Make more inner find_package calls quiet
Task-number: QTBUG-85276 Change-Id: I8ed84e2f2cdaf90224452a5e5a549791574edc15 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'cmake/FindWrapSystemHarfbuzz.cmake')
-rw-r--r--cmake/FindWrapSystemHarfbuzz.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/FindWrapSystemHarfbuzz.cmake b/cmake/FindWrapSystemHarfbuzz.cmake
index 6829dc1430..a8dc6a14e6 100644
--- a/cmake/FindWrapSystemHarfbuzz.cmake
+++ b/cmake/FindWrapSystemHarfbuzz.cmake
@@ -7,7 +7,7 @@ endif()
set(WrapSystemHarfbuzz_FOUND OFF)
-find_package(harfbuzz)
+find_package(harfbuzz QUIET)
# Gentoo has some buggy version of a harfbuzz Config file. Check if include paths are valid.
set(__harfbuzz_target_name "harfbuzz::harfbuzz")
@@ -24,7 +24,7 @@ if(harfbuzz_FOUND AND TARGET "${__harfbuzz_target_name}")
endif()
if(__harfbuzz_broken_config_file)
- find_package(PkgConfig)
+ find_package(PkgConfig QUIET)
pkg_check_modules(harfbuzz harfbuzz IMPORTED_TARGET)
set(__harfbuzz_target_name "PkgConfig::harfbuzz")