4eeb329014
Summary: These changes allow replying to any notifications that offer quick reply text fields Reviewers: #kde_connect, apol Reviewed By: #kde_connect, apol Subscribers: apol Maniphest Tasks: T4674 Differential Revision: https://phabricator.kde.org/D5993
18 lines
494 B
CMake
18 lines
494 B
CMake
find_package(KF5 REQUIRED COMPONENTS Notifications KCMUtils I18n IconThemes Config)
|
|
|
|
set(kdeconnect_notifications_SRCS
|
|
notification.cpp
|
|
notificationsplugin.cpp
|
|
notificationsdbusinterface.cpp
|
|
sendreplydialog.cpp
|
|
)
|
|
|
|
kdeconnect_add_plugin(kdeconnect_notifications JSON kdeconnect_notifications.json SOURCES ${kdeconnect_notifications_SRCS})
|
|
|
|
target_link_libraries(kdeconnect_notifications
|
|
kdeconnectcore
|
|
Qt5::DBus
|
|
KF5::Notifications
|
|
KF5::I18n
|
|
KF5::IconThemes
|
|
)
|