2015-09-01 04:37:19 +03:00
|
|
|
if(ENABLE_TESTING)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
endif()
|
2014-11-15 03:14:34 +02:00
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
2015-11-06 13:03:02 +02:00
|
|
|
set(kcm_icons_PART_SRCS
|
|
|
|
iconthemes.cpp
|
|
|
|
icons.cpp
|
|
|
|
main.cpp
|
|
|
|
)
|
2014-11-15 03:14:34 +02:00
|
|
|
|
|
|
|
kde4_add_plugin(kcm_icons ${kcm_icons_PART_SRCS})
|
|
|
|
|
2022-02-01 18:11:59 +02:00
|
|
|
target_link_libraries(kcm_icons ${KDE4_KIO_LIBS} ${QT_QTGUI_LIBRARY})
|
2014-11-15 03:14:34 +02:00
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
2015-11-06 13:03:02 +02:00
|
|
|
install(
|
|
|
|
TARGETS kcm_icons
|
2020-02-08 19:29:32 +00:00
|
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
2015-11-06 13:03:02 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES icons.desktop
|
2020-02-08 19:29:32 +00:00
|
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
2015-11-06 13:03:02 +02:00
|
|
|
)
|