kde-workspace/knotify/CMakeLists.txt

59 lines
1.8 KiB
Text
Raw Normal View History

2014-11-15 04:16:00 +02:00
add_subdirectory( sounds )
########### next target ###############
set(knotify_SRCS
main.cpp
knotify.cpp
notifybysound.cpp
notifybypopup.cpp
notifybylogfile.cpp
notifybytaskbar.cpp
notifybyexecute.cpp
notifybyktts.cpp
imageconverter.cpp
ksolidnotify.cpp
2014-11-15 04:16:00 +02:00
)
set(knotifyplugin_SRCS
2015-09-01 04:37:19 +03:00
knotifyplugin.cpp
knotifyconfig.cpp
2014-11-15 04:16:00 +02:00
)
set(knotifyplugin_HEADERS
2015-09-01 04:37:19 +03:00
knotifyplugin.h
knotifyconfig.h
knotify_export.h
2014-11-15 04:16:00 +02:00
)
qt4_add_dbus_interfaces(knotify_SRCS ${KDE4_DBUS_INTERFACES_INSTALL_DIR}/org.kde.KSpeech.xml)
2014-11-15 04:16:00 +02:00
set (knotify_OUTPUT_NAME knotify4)
2015-09-01 04:37:19 +03:00
add_executable( knotify ${knotify_SRCS})
2014-11-15 04:16:00 +02:00
2015-09-01 04:37:19 +03:00
add_library( knotifyplugin SHARED ${knotifyplugin_SRCS})
2014-11-15 04:16:00 +02:00
target_link_libraries( knotify ${KDE4_KDEUI_LIBS} ${KDE4_SOLID_LIBS} knotifyplugin kmediaplayer)
2014-11-15 04:16:00 +02:00
target_link_libraries( knotifyplugin ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBS})
set_target_properties(knotify PROPERTIES OUTPUT_NAME knotify4 )
install(TARGETS knotify ${INSTALL_TARGETS_DEFAULT_ARGS} )
########### install files ###############
install( FILES kde.notifyrc DESTINATION ${KDE4_DATA_INSTALL_DIR}/kde )
install( FILES hardwarenotifications.notifyrc DESTINATION ${KDE4_DATA_INSTALL_DIR}/hardwarenotifications )
install( FILES knotify4.desktop DESTINATION ${KDE4_SERVICES_INSTALL_DIR} )
2014-11-15 04:16:00 +02:00
install( FILES knotifynotifymethod.desktop DESTINATION ${KDE4_SERVICETYPES_INSTALL_DIR} )
2014-11-15 04:16:00 +02:00
install( TARGETS knotifyplugin ${INSTALL_TARGETS_DEFAULT_ARGS} )
install( FILES ${knotifyplugin_HEADERS} DESTINATION ${KDE4_INCLUDE_INSTALL_DIR} )
2014-11-15 04:16:00 +02:00
########### D-Bus Autostart Services #########
configure_file(org.kde.knotify.service.cmake
${CMAKE_CURRENT_BINARY_DIR}/org.kde.knotify.service)
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.knotify.service DESTINATION ${KDE4_DBUS_SERVICES_INSTALL_DIR} )