mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
26 lines
596 B
CMake
26 lines
596 B
CMake
project(desktoptheme)
|
|
|
|
set(kcmdesktoptheme_SRCS
|
|
kcmdesktoptheme.cpp
|
|
desktopthemedetails.cpp
|
|
thememodel.cpp
|
|
DesktopTheme.ui
|
|
DesktopThemeDetails.ui
|
|
)
|
|
|
|
kde4_add_plugin(kcm_desktoptheme ${kcmdesktoptheme_SRCS})
|
|
target_link_libraries(kcm_desktoptheme
|
|
${X11_LIBRARIES}
|
|
${KDE4_KDEUI_LIBS}
|
|
${KDE4_KPARTS_LIBS}
|
|
${KDE4_KCMUTILS_LIBRARY}
|
|
${KDE4_PLASMA_LIBS}
|
|
${KDE4_KIO_LIBS}
|
|
)
|
|
|
|
install(TARGETS kcm_desktoptheme DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
########### install files ###############
|
|
|
|
install(FILES desktoptheme.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
|