2014-11-13 19:30:51 +02:00
|
|
|
project(desktoptheme)
|
|
|
|
|
2015-09-01 04:37:19 +03:00
|
|
|
set(kcmdesktoptheme_SRCS
|
|
|
|
kcmdesktoptheme.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}
|
2023-06-17 23:26:56 +03:00
|
|
|
KDE4::kdeui
|
|
|
|
KDE4::kparts
|
|
|
|
KDE4::kcmutils
|
|
|
|
KDE4::plasma
|
|
|
|
KDE4::kio
|
|
|
|
KDE4::karchive
|
2015-09-01 04:37:19 +03:00
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2015-11-06 13:03:02 +02:00
|
|
|
install(
|
|
|
|
TARGETS kcm_desktoptheme
|
2020-02-08 19:29:32 +00:00
|
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
2015-11-06 13:03:02 +02:00
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
########### install files ###############
|
2015-09-01 04:37:19 +03:00
|
|
|
|
2015-11-06 13:03:02 +02:00
|
|
|
install(
|
|
|
|
FILES desktoptheme.desktop
|
2020-02-08 19:29:32 +00:00
|
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
2015-11-06 13:03:02 +02:00
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|