2020-05-26 17:55:47 +01:00
|
|
|
set(debug_file_SRCS)
|
|
|
|
ecm_qt_declare_logging_category(
|
|
|
|
debug_file_SRCS HEADER plugin_runcommand_debug.h
|
|
|
|
IDENTIFIER KDECONNECT_PLUGIN_RUNCOMMAND CATEGORY_NAME kdeconnect.plugin.runcommand
|
|
|
|
DEFAULT_SEVERITY Warning
|
|
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin runcommand)")
|
|
|
|
|
2015-09-12 11:38:44 +01:00
|
|
|
set(kdeconnect_runcommand_SRCS
|
|
|
|
runcommandplugin.cpp
|
2020-05-26 17:55:47 +01:00
|
|
|
${debug_file_SRCS}
|
2015-09-12 11:38:44 +01:00
|
|
|
)
|
|
|
|
|
2021-06-28 19:33:52 +01:00
|
|
|
kdeconnect_add_plugin(kdeconnect_runcommand SOURCES ${kdeconnect_runcommand_SRCS})
|
2015-09-12 11:38:44 +01:00
|
|
|
|
|
|
|
target_link_libraries(kdeconnect_runcommand
|
|
|
|
kdeconnectcore
|
2022-10-29 15:51:41 +01:00
|
|
|
Qt${QT_MAJOR_VERSION}::DBus
|
2020-10-08 19:59:17 +01:00
|
|
|
KF5::KCMUtils
|
2015-09-12 11:38:44 +01:00
|
|
|
KF5::I18n)
|
|
|
|
|
|
|
|
#----------------------
|
2023-07-18 21:13:27 +01:00
|
|
|
kcoreaddons_add_plugin(kdeconnect_runcommand_config SOURCES runcommand_config.cpp INSTALL_NAMESPACE "kdeconnect/kcms")
|
|
|
|
target_link_libraries( kdeconnect_runcommand_config
|
|
|
|
kdeconnectcore
|
|
|
|
kdeconnectpluginkcm
|
|
|
|
KF5::I18n
|
|
|
|
KF5::CoreAddons
|
|
|
|
KF5::ConfigWidgets
|
|
|
|
)
|