2023-04-15 11:57:52 +01:00
|
|
|
qt_add_resources(presenter_SRCS assets.qrc)
|
2019-07-05 16:58:46 +01:00
|
|
|
|
2020-05-26 17:55:47 +01:00
|
|
|
set(debug_file_SRCS)
|
|
|
|
ecm_qt_declare_logging_category(
|
|
|
|
debug_file_SRCS HEADER plugin_presenter_debug.h
|
|
|
|
IDENTIFIER KDECONNECT_PLUGIN_PRESENT CATEGORY_NAME kdeconnect.plugin.presenter
|
|
|
|
DEFAULT_SEVERITY Warning
|
|
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin presenter)")
|
|
|
|
|
2021-06-28 19:33:52 +01:00
|
|
|
kdeconnect_add_plugin(kdeconnect_presenter SOURCES presenterplugin.cpp ${presenter_SRCS} ${debug_file_SRCS})
|
2019-07-05 16:58:46 +01:00
|
|
|
target_link_libraries(kdeconnect_presenter
|
|
|
|
kdeconnectcore
|
2022-10-29 15:51:41 +01:00
|
|
|
Qt${QT_MAJOR_VERSION}::DBus
|
|
|
|
Qt${QT_MAJOR_VERSION}::Quick
|
2023-04-15 11:57:52 +01:00
|
|
|
KF${QT_MAJOR_VERSION}::I18n
|
2019-07-05 16:58:46 +01:00
|
|
|
)
|