kdeconnect-kde/daemon/plugins/notifications/CMakeLists.txt

40 lines
1 KiB
CMake
Raw Normal View History

2013-08-13 23:09:46 +01:00
find_package(KDE4 REQUIRED)
include (KDE4Defaults)
include_directories(${KDE4_INCLUDES})
set(kdeconnect_notifications_SRCS
notification.cpp
2013-08-13 23:09:46 +01:00
notificationsplugin.cpp
notificationsdbusinterface.cpp
2013-08-13 23:09:46 +01:00
../kdeconnectplugin.cpp
2013-08-13 23:18:32 +01:00
../pluginloader.cpp
../../networkpackage.cpp
../../device.cpp
2013-08-13 23:09:46 +01:00
)
kde4_add_plugin(kdeconnect_notifications ${kdeconnect_notifications_SRCS})
target_link_libraries(kdeconnect_notifications
${KDE4_KDECORE_LIBS}
${KDE4_KDEUI_LIBS}
${QT_QTNETWORK_LIBRARY}
qjson
)
install(TARGETS kdeconnect_notifications DESTINATION ${PLUGIN_INSTALL_DIR} )
install(FILES kdeconnect_notifications.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
include(../../../cmakemacros.txt)
generate_and_install_dbus_interface(
kdeconnect_notifications
notificationsdbusinterface.h
org.kde.kdeconnect.device.notifications.xml
OPTIONS -a
)
generate_and_install_dbus_interface(
kdeconnect_notifications
notification.h
org.kde.kdeconnect.device.notifications.notification.xml
OPTIONS -a
)