From 64d12062183e2fa01f8c0127c4b9f91afaeee46c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= Date: Mon, 8 Jul 2024 16:16:35 +0200 Subject: [PATCH] [cmake] Find Benchmark quiet (#293) The output does not help identify 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 0bf696b..4a3af3f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,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"