ed1e24d231
This is far less code and allows for an easier enforcing of standards, for example the name of the log identifiers which were adjusted in a few cases. Also clean up unused includes when noticed.
20 lines
1.1 KiB
CMake
20 lines
1.1 KiB
CMake
# SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
|
|
# Function to create the plugin and generate a logging category for it
|
|
function(kdeconnect_add_plugin plugin_name)
|
|
kcoreaddons_add_plugin(${plugin_name} ${ARGN} INSTALL_NAMESPACE kdeconnect)
|
|
|
|
string(REPLACE "kdeconnect_" "" PlUGIN_WITHOUT_PREFIX "${plugin_name}") # For the file name and description, we don't want this
|
|
string(TOUPPER "${PlUGIN_WITHOUT_PREFIX}" PLUGIN_UPPER) # The identifier is all capy
|
|
ecm_qt_declare_logging_category(${plugin_name}
|
|
HEADER plugin_${PlUGIN_WITHOUT_PREFIX}_debug.h
|
|
IDENTIFIER KDECONNECT_PLUGIN_${PLUGIN_UPPER} CATEGORY_NAME kdeconnect.plugin.${PlUGIN_WITHOUT_PREFIX}
|
|
DEFAULT_SEVERITY Warning
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin ${PlUGIN_WITHOUT_PREFIX})")
|
|
endfunction()
|
|
|
|
function(kdeconnect_add_kcm plugin)
|
|
kcoreaddons_add_plugin(${plugin} ${ARGN} INSTALL_NAMESPACE kdeconnect/kcms)
|
|
install(FILES "${plugin}.qml" DESTINATION ${KDE_INSTALL_DATADIR}/kdeconnect)
|
|
endfunction()
|