mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
27 lines
492 B
CMake
27 lines
492 B
CMake
if(ENABLE_TESTING)
|
|
add_subdirectory(tests)
|
|
endif()
|
|
|
|
########### 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_LIBS} ${QT_QTGUI_LIBRARY})
|
|
|
|
########### install files ###############
|
|
|
|
install(
|
|
TARGETS kcm_icons
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES icons.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|