kde-workspace/kcontrol/desktoptheme/CMakeLists.txt

31 lines
579 B
Text
Raw Normal View History

2014-11-13 19:30:51 +02:00
project(desktoptheme)
2015-09-01 04:37:19 +03:00
set(kcmdesktoptheme_SRCS
kcmdesktoptheme.cpp
desktopthemedetails.cpp
thememodel.cpp
)
2014-11-13 19:30:51 +02:00
kde4_add_plugin(kcm_desktoptheme ${kcmdesktoptheme_SRCS})
2015-01-11 20:59:41 +00:00
target_link_libraries(kcm_desktoptheme
${X11_LIBRARIES}
${KDE4_KDEUI_LIBS}
${KDE4_KPARTS_LIBS}
${KDE4_KCMUTILS_LIBRARY}
${KDE4_PLASMA_LIBS}
2015-09-01 04:37:19 +03:00
${KDE4_KIO_LIBS}
)
2014-11-13 19:30:51 +02:00
install(
TARGETS kcm_desktoptheme
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
)
2014-11-13 19:30:51 +02:00
########### install files ###############
2015-09-01 04:37:19 +03:00
install(
FILES desktoptheme.desktop
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)
2014-11-13 19:30:51 +02:00