bcc9fb06db
Summary: Telephony and SMS handling are quite distinct so they should be in separate plugins for better maintainability, given that @sredman has big plans with SMS. This diff should be fully backwards compatible, but whether we really want to do that is up to discussion Test Plan: Only supeficially tested. Receive an SMS (old way), Notification is shown Reviewers: #kde_connect, sredman Reviewed By: sredman Subscribers: albertvaka, apol, sredman, kdeconnect, #kde_connect Tags: #kde_connect Differential Revision: https://phabricator.kde.org/D13594
14 lines
327 B
CMake
14 lines
327 B
CMake
set(kdeconnect_telephony_SRCS
|
|
telephonyplugin.cpp
|
|
)
|
|
|
|
include_directories(${CMAKE_BINARY_DIR})
|
|
|
|
kdeconnect_add_plugin(kdeconnect_telephony JSON kdeconnect_telephony.json SOURCES ${kdeconnect_telephony_SRCS})
|
|
|
|
target_link_libraries(kdeconnect_telephony
|
|
kdeconnectcore
|
|
KF5::I18n
|
|
KF5::Notifications
|
|
Qt5::DBus
|
|
)
|