mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
kded: Fix package not being loaded
This commit is contained in:
parent
f95e3a6ee9
commit
cd6d5172e2
2 changed files with 5 additions and 3 deletions
|
|
@ -1,12 +1,12 @@
|
||||||
# SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
# SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
kcoreaddons_add_plugin(kded_plasma_mobile_start INSTALL_NAMESPACE "kf${QT_MAJOR_VERSION}/kded")
|
set(kded_plasma_mobile_start_SRCS
|
||||||
|
|
||||||
target_sources(kded_plasma_mobile_start PRIVATE
|
|
||||||
start.cpp
|
start.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
kcoreaddons_add_plugin(kded_plasma_mobile_start SOURCES ${kded_plasma_mobile_start_SRCS} INSTALL_NAMESPACE "kf6/kded")
|
||||||
|
|
||||||
target_link_libraries(kded_plasma_mobile_start PRIVATE
|
target_link_libraries(kded_plasma_mobile_start PRIVATE
|
||||||
Qt::Core
|
Qt::Core
|
||||||
KF6::DBusAddons
|
KF6::DBusAddons
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,8 @@
|
||||||
|
|
||||||
#include "start.h"
|
#include "start.h"
|
||||||
|
|
||||||
|
K_PLUGIN_FACTORY_WITH_JSON(StartFactory, "kded_plasma_mobile_start.json", registerPlugin<Start>();)
|
||||||
|
|
||||||
Start::Start(QObject *parent, const QList<QVariant> &)
|
Start::Start(QObject *parent, const QList<QVariant> &)
|
||||||
: KDEDModule{parent}
|
: KDEDModule{parent}
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue