mirror of
https://invent.kde.org/network/kdeconnect-kde.git
synced 2025-12-12 20:35:55 +01:00
The KDE Connect QML app has reached the point where it has almost 100% feature parity with the KCM (two features missing only: exporting/importing commands lists for the runcommand plugin, and configuring the applications for the receive notifications plugin). So I think it's time we kill the KCM module and replace it with the nicer looking QML app, removing in the process a whole lot of code duplication.
I originally wrote the KCM module 12 years ago now and it has served us well all this years, but it's time for it to go 😄
23 lines
635 B
CMake
23 lines
635 B
CMake
kdeconnect_add_plugin(kdeconnect_sms SOURCES ${kdeconnect_sms_SRCS})
|
|
|
|
target_sources(kdeconnect_sms PRIVATE
|
|
smsplugin.cpp
|
|
conversationsdbusinterface.cpp
|
|
requestconversationworker.cpp
|
|
)
|
|
ecm_qt_declare_logging_category(kdeconnect_sms
|
|
HEADER kdeconnect_conversations_debug.h
|
|
IDENTIFIER KDECONNECT_CONVERSATIONS CATEGORY_NAME kdeconnect.conversations
|
|
DEFAULT_SEVERITY Warning
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (conversations)")
|
|
|
|
target_link_libraries(kdeconnect_sms
|
|
kdeconnectcore
|
|
kdeconnectinterfaces
|
|
Qt::DBus
|
|
KF6::I18n
|
|
KF6::Notifications
|
|
KF6::ColorScheme
|
|
Qt::Widgets
|
|
)
|