2013-08-13 23:09:46 +01:00
|
|
|
find_package(KDE4 REQUIRED)
|
2013-08-31 12:04:00 +01:00
|
|
|
find_package(QJSON REQUIRED)
|
|
|
|
find_package(QCA2 REQUIRED)
|
|
|
|
|
2013-09-26 16:49:40 +01:00
|
|
|
include(KDE4Defaults)
|
|
|
|
|
2013-09-01 21:13:03 +01:00
|
|
|
include_directories(
|
|
|
|
${QJSON_INCLUDE_DIR}
|
|
|
|
${QCA2_INCLUDE_DIR}
|
2013-09-26 16:49:40 +01:00
|
|
|
${KDE4_INCLUDES}
|
|
|
|
${CMAKE_SOURCE_DIR}
|
2013-09-01 21:13:03 +01:00
|
|
|
)
|
|
|
|
|
2013-08-13 23:09:46 +01:00
|
|
|
set(kdeconnect_notifications_SRCS
|
2013-08-20 12:53:36 +01:00
|
|
|
notification.cpp
|
2013-08-13 23:09:46 +01:00
|
|
|
notificationsplugin.cpp
|
2013-08-20 12:53:36 +01:00
|
|
|
notificationsdbusinterface.cpp
|
2013-08-13 23:09:46 +01:00
|
|
|
../kdeconnectplugin.cpp
|
2013-08-13 23:18:32 +01:00
|
|
|
../pluginloader.cpp
|
|
|
|
../../networkpackage.cpp
|
2013-09-24 13:10:25 +01:00
|
|
|
../../filetransferjob.cpp
|
2013-08-13 23:18:32 +01:00
|
|
|
../../device.cpp
|
2013-11-06 21:16:55 +00:00
|
|
|
../../kdebugnamespace.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}
|
2013-09-24 13:10:25 +01:00
|
|
|
${KDE4_KIO_LIBS}
|
2013-08-13 23:09:46 +01:00
|
|
|
${QT_QTNETWORK_LIBRARY}
|
2013-08-31 12:04:00 +01:00
|
|
|
${QJSON_LIBRARIES}
|
|
|
|
${QCA2_LIBRARIES}
|
2013-08-13 23:09:46 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
install(TARGETS kdeconnect_notifications DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
install(FILES kdeconnect_notifications.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
2013-08-20 12:53:36 +01:00
|
|
|
|
2013-09-02 13:47:37 +01:00
|
|
|
include(../../../macros.cmake)
|
2013-08-20 12:53:36 +01:00
|
|
|
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
|
|
|
|
)
|