mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 06:33: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-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
kcoreaddons_add_plugin(kded_plasma_mobile_start INSTALL_NAMESPACE "kf${QT_MAJOR_VERSION}/kded")
|
||||
|
||||
target_sources(kded_plasma_mobile_start PRIVATE
|
||||
set(kded_plasma_mobile_start_SRCS
|
||||
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
|
||||
Qt::Core
|
||||
KF6::DBusAddons
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@
|
|||
|
||||
#include "start.h"
|
||||
|
||||
K_PLUGIN_FACTORY_WITH_JSON(StartFactory, "kded_plasma_mobile_start.json", registerPlugin<Start>();)
|
||||
|
||||
Start::Start(QObject *parent, const QList<QVariant> &)
|
||||
: KDEDModule{parent}
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue