From c251be3ef3195fe9ca8be6d53829118d0d5021bc Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sat, 21 Dec 2024 14:18:01 +0100 Subject: [PATCH] [plasmalnf] Be quiet at find_package() for Plasma If the requirements are not met, the module will be listed in the skipped-modules overview. --- src/modules/plasmalnf/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/plasmalnf/CMakeLists.txt b/src/modules/plasmalnf/CMakeLists.txt index 50cb630f2..930b3e441 100644 --- a/src/modules/plasmalnf/CMakeLists.txt +++ b/src/modules/plasmalnf/CMakeLists.txt @@ -13,7 +13,7 @@ if(WITH_QT6) set(_plasma_libraries "Plasma::Plasma") set(_plasma_name "Plasma") find_package(${kfname} ${KF_VERSION} QUIET COMPONENTS Config Package) - find_package(Plasma ${PLASMA_VERSION}) + find_package(Plasma ${PLASMA_VERSION} QUIET) else() set(_plasma_libraries "${kfname}::Plasma") set(_plasma_name "KF5Plasma")