1d36164230
This automatizes the generation of logging categories so a kdeconnect-kde.categories is generated and installed to /usr/share/qlogging-categories5/ so kdebugsettings can use it. Also, sets the default logging level to Warning. So now the logs of users won't be filled with debug messages but they can modify the configuration easily with kdebugsettings.
37 lines
1.1 KiB
CMake
37 lines
1.1 KiB
CMake
set(debug_file_SRCS)
|
|
ecm_qt_declare_logging_category(
|
|
debug_file_SRCS HEADER plugin_sms_debug.h
|
|
IDENTIFIER KDECONNECT_PLUGIN_SMS CATEGORY_NAME kdeconnect.plugin.sms
|
|
DEFAULT_SEVERITY Warning
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin sms)")
|
|
|
|
ecm_qt_declare_logging_category(
|
|
debug_file_SRCS HEADER kdeconnect_conversations_debug.h
|
|
IDENTIFIER KDECONNECT_CONVERSATIONS CATEGORY_NAME kdeconnect.conversations
|
|
DEFAULT_SEVERITY Warning
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (conversations)")
|
|
|
|
set(kdeconnect_sms_SRCS
|
|
smsplugin.cpp
|
|
conversationsdbusinterface.cpp
|
|
requestconversationworker.cpp
|
|
${debug_file_SRCS}
|
|
)
|
|
|
|
include_directories(${CMAKE_BINARY_DIR})
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../notifications/) # needed for the sendreplydialog
|
|
|
|
ki18n_wrap_ui(kdeconnect_sms_SRCS ../notifications/sendreplydialog.ui)
|
|
|
|
kdeconnect_add_plugin(kdeconnect_sms JSON kdeconnect_sms.json SOURCES ../notifications/sendreplydialog.cpp ${kdeconnect_sms_SRCS})
|
|
|
|
|
|
target_link_libraries(kdeconnect_sms
|
|
kdeconnectcore
|
|
kdeconnectinterfaces
|
|
Qt5::DBus
|
|
KF5::I18n
|
|
KF5::Notifications
|
|
Qt5::Widgets
|
|
)
|