diff options
| author | Alexander Lohnau <[email protected]> | 2022-04-16 13:05:02 +0200 |
|---|---|---|
| committer | Luigi Toscano <[email protected]> | 2022-04-24 20:58:47 +0000 |
| commit | be95cd3025b113e1a2b34b2b1a42ffe544b39c4e (patch) | |
| tree | 75a03627aa7f1a33d361072d62e4ec9db7779fc5 /src | |
| parent | 1618a3ed21761648b20a14d7477aa065a2239fa7 (diff) | |
Define MODULE type for KCM libraries
Otherwise, they will have the "lib" prefix
Diffstat (limited to 'src')
| -rw-r--r-- | src/CMakeLists.txt | 6 |
1 files 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 |
