From be95cd3025b113e1a2b34b2b1a42ffe544b39c4e Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Sat, 16 Apr 2022 13:05:02 +0200 Subject: [PATCH] Define MODULE type for KCM libraries Otherwise, they will have the "lib" prefix --- src/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8ac01eb86..e96f3046e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -358,9 +358,9 @@ install(TARGETS dolphin ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) if(NOT WIN32) # The settings are still accessible from the hamburger menu - add_library(kcm_dolphinviewmodes) - add_library(kcm_dolphinnavigation) - add_library(kcm_dolphingeneral) + add_library(kcm_dolphinviewmodes MODULE) + add_library(kcm_dolphinnavigation MODULE) + add_library(kcm_dolphingeneral MODULE) target_sources(kcm_dolphinviewmodes PRIVATE settings/kcm/kcmdolphinviewmodes.cpp -- 2.47.3