From 5c30785d8d1070179aff4a0fb59fc032a4ba666b Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Thu, 27 Mar 2025 10:00:09 -0400 Subject: [PATCH] CMakeLists.txt - Don't include quiet packages in the feature summary Only the pkg_config part in Findcmark is quiet, which also shouldn't put out as a status message. Fixes: ``` Missing these optional packages: * Qt6QmlCompilerPlusPrivateTools (required version >= 6.8.2) ``` --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ebee68c18..76ba7c276 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -192,7 +192,7 @@ if(KF6DocTools_FOUND) add_subdirectory(doc) endif() -feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) +feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) if (NOT ANDROID) file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES src/*.cpp src/*.h)