mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 10:22:49 +00:00
27 lines
457 B
CMake
27 lines
457 B
CMake
########### next target ###############
|
|
|
|
set(kcm_icons_PART_SRCS
|
|
iconthemes.cpp
|
|
icons.cpp
|
|
main.cpp
|
|
)
|
|
|
|
kde4_add_plugin(kcm_icons ${kcm_icons_PART_SRCS})
|
|
|
|
target_link_libraries(kcm_icons
|
|
KDE4::kio
|
|
KDE4::karchive
|
|
${QT_QTGUI_LIBRARY}
|
|
)
|
|
|
|
########### install files ###############
|
|
|
|
install(
|
|
TARGETS kcm_icons
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES icons.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|