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

24 lines
631 B
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
notificationsplugin.cpp
../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} )