kde-workspace/kioslave/desktop/CMakeLists.txt

33 lines
1 KiB
Text
Raw Normal View History

2015-09-01 04:37:19 +03:00
if(ENABLE_TESTING)
add_subdirectory(tests)
endif()
2014-11-15 04:16:00 +02:00
########### next target ###############
set(kio_desktop_PART_SRCS kio_desktop.cpp)
kde4_add_plugin(kio_desktop ${kio_desktop_PART_SRCS})
target_link_libraries(kio_desktop ${KDE4_KIO_LIBS})
install(TARGETS kio_desktop DESTINATION ${KDE4_PLUGIN_INSTALL_DIR} )
2014-11-15 04:16:00 +02:00
########### next target ###############
set(kded_desktopnotifier_PART_SRCS desktopnotifier.cpp )
kde4_add_plugin(kded_desktopnotifier ${kded_desktopnotifier_PART_SRCS})
target_link_libraries(kded_desktopnotifier ${KDE4_KIO_LIBS})
install(TARGETS kded_desktopnotifier DESTINATION ${KDE4_PLUGIN_INSTALL_DIR} )
2014-11-15 04:16:00 +02:00
########### install files ###############
install( FILES desktopnotifier.desktop DESTINATION ${KDE4_SERVICES_INSTALL_DIR}/kded )
install( FILES desktop.protocol DESTINATION ${KDE4_SERVICES_INSTALL_DIR} )
2014-11-15 04:16:00 +02:00
install(FILES directory.desktop directory.trash DESTINATION ${KDE4_DATA_INSTALL_DIR}/kio_desktop)
install(FILES Home.desktop DESTINATION ${KDE4_DATA_INSTALL_DIR}/kio_desktop/DesktopLinks)
2014-11-15 04:16:00 +02:00