2020-05-26 17:55:47 +01:00
|
|
|
set(debug_file_SRCS)
|
|
|
|
ecm_qt_declare_logging_category(
|
|
|
|
debug_file_SRCS HEADER plugin_share_debug.h
|
|
|
|
IDENTIFIER KDECONNECT_PLUGIN_SHARE CATEGORY_NAME kdeconnect.plugin.share
|
|
|
|
DEFAULT_SEVERITY Warning
|
|
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin share)")
|
|
|
|
|
2013-11-23 00:39:10 +00:00
|
|
|
set(kdeconnect_share_SRCS
|
|
|
|
shareplugin.cpp
|
2020-05-26 17:55:47 +01:00
|
|
|
${debug_file_SRCS}
|
2013-11-23 00:39:10 +00:00
|
|
|
)
|
|
|
|
|
2021-06-28 19:33:52 +01:00
|
|
|
kdeconnect_add_plugin(kdeconnect_share SOURCES ${kdeconnect_share_SRCS})
|
2013-11-23 00:39:10 +00:00
|
|
|
|
2014-09-22 01:37:10 +01:00
|
|
|
target_link_libraries(kdeconnect_share
|
|
|
|
kdeconnectcore
|
|
|
|
Qt5::DBus
|
|
|
|
KF5::Notifications
|
|
|
|
KF5::I18n
|
|
|
|
KF5::KIOWidgets
|
2019-02-08 23:00:01 +00:00
|
|
|
KF5::Service
|
2014-09-22 01:37:10 +01:00
|
|
|
)
|
2013-11-23 00:39:10 +00:00
|
|
|
|
|
|
|
#######################################
|
|
|
|
# Config
|
|
|
|
|
2021-11-18 10:05:09 +00:00
|
|
|
kcoreaddons_add_plugin(kdeconnect_share_config SOURCES share_config.cpp INSTALL_NAMESPACE "kdeconnect/kcms")
|
2013-11-23 00:39:10 +00:00
|
|
|
|
2021-11-18 10:05:09 +00:00
|
|
|
ki18n_wrap_ui(kdeconnect_share_config share_config.ui)
|
2013-11-23 00:39:10 +00:00
|
|
|
target_link_libraries( kdeconnect_share_config
|
2015-03-14 04:19:39 +00:00
|
|
|
kdeconnectpluginkcm
|
2014-09-22 08:24:59 +01:00
|
|
|
KF5::I18n
|
|
|
|
KF5::CoreAddons
|
|
|
|
KF5::ConfigWidgets
|
2014-06-16 19:02:07 +01:00
|
|
|
KF5::KIOWidgets
|
2015-03-24 11:26:37 +00:00
|
|
|
KF5::Notifications
|
2013-11-23 00:39:10 +00:00
|
|
|
)
|