From 281f4c64bc7637c01f0e5a8b92f33f4829c6bd16 Mon Sep 17 00:00:00 2001 From: demmm Date: Thu, 22 Feb 2024 11:50:02 +0100 Subject: [PATCH] [plasmalnf] CMake correction libplasma is not required, if not found just skip the module, like in kf5 --- 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 ae19af861..50cb630f2 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} REQUIRED) + find_package(Plasma ${PLASMA_VERSION}) else() set(_plasma_libraries "${kfname}::Plasma") set(_plasma_name "KF5Plasma")