kde-workspace/kcontrol/desktoptheme/CMakeLists.txt
Ivailo Monev a62e897f42 kcontrol: drop support for changing theme details
was coded around assumptions that clock and menu applets use custom
backgrounds and such - now that I've rewritten some applets that is no
longer the case

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2024-04-21 00:15:22 +03:00

30 lines
532 B
CMake

project(desktoptheme)
set(kcmdesktoptheme_SRCS
kcmdesktoptheme.cpp
thememodel.cpp
)
kde4_add_plugin(kcm_desktoptheme ${kcmdesktoptheme_SRCS})
target_link_libraries(kcm_desktoptheme
${X11_LIBRARIES}
KDE4::kdeui
KDE4::kparts
KDE4::kcmutils
KDE4::plasma
KDE4::kio
KDE4::karchive
)
install(
TARGETS kcm_desktoptheme
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
)
########### install files ###############
install(
FILES desktoptheme.desktop
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)