From 14357d9e5709627ebb69ea3de91f86c618fbc3d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= Date: Sat, 6 Jul 2024 22:54:15 +0200 Subject: [PATCH] [cmake] Find Benchmark quiet The output does not help identifiy the issue, the missing dependency is called out in the feature summary anyway. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c0f2c58..099023b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ${BUILD_SHARED_LIBS}) if (BUILD_TESTING) if (BUILD_BENCHMARK) - find_package(benchmark) + find_package(benchmark QUIET) set_package_properties(benchmark PROPERTIES TYPE REQUIRED DESCRIPTION "a microbenchmark support library"