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.
31 lines
1,010 B
CMake
31 lines
1,010 B
CMake
if(APPLE)
|
|
set(kdeconnect_screensaver_inhibit_SRCS
|
|
screensaverinhibitplugin-macos.cpp
|
|
)
|
|
elseif(WIN32)
|
|
set(kdeconnect_screensaver_inhibit_SRCS
|
|
screensaverinhibitplugin-win.cpp
|
|
)
|
|
else()
|
|
set(kdeconnect_screensaver_inhibit_SRCS
|
|
screensaverinhibitplugin.cpp
|
|
)
|
|
endif()
|
|
|
|
set(debug_file_SRCS)
|
|
ecm_qt_declare_logging_category(
|
|
debug_file_SRCS HEADER kdeconnect_screensaverinhibit_debug.h
|
|
IDENTIFIER KDECONNECT_PLUGIN_SCREENSAVERINHIBIT CATEGORY_NAME kdeconnect.plugin.screensaverinhibit
|
|
DEFAULT_SEVERITY Warning
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin screensaverinhibit)")
|
|
|
|
kdeconnect_add_plugin(kdeconnect_screensaver_inhibit JSON kdeconnect_screensaver_inhibit.json SOURCES ${kdeconnect_screensaver_inhibit_SRCS} ${debug_file_SRCS})
|
|
|
|
target_link_libraries(kdeconnect_screensaver_inhibit kdeconnectcore)
|
|
if(NOT APPLE AND NOT WIN32)
|
|
target_link_libraries(kdeconnect_screensaver_inhibit
|
|
Qt5::DBus
|
|
KF5::I18n
|
|
)
|
|
endif()
|
|
|