mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
Use plasma_add_applet to deploy the applets as a module: https://invent.kde.org/plasma/libplasma/-/merge_requests/1116 We eventually need to do this for Halcyon and Folio homescreens too, but they also have a bunch of C++ classes to be ported to declarative type registration.
19 lines
605 B
CMake
19 lines
605 B
CMake
# SPDX-FileCopyrightText: 2017 Marco Martin <mart@kde.org>
|
|
# SPDX-FileCopyrightText: 2021 Aleix Pol <apol@kde.org>
|
|
# SPDX-FileCopyrightText: 2020-2021 Nicolas Fella <nicolas.fella@kde.org>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
plasma_add_applet(org.kde.plasma.mobile.panel
|
|
QML_SOURCES
|
|
qml/main.qml
|
|
CPP_SOURCES
|
|
phonepanel.cpp
|
|
)
|
|
|
|
target_link_libraries(org.kde.plasma.mobile.panel PRIVATE
|
|
Qt::Gui
|
|
Qt::DBus
|
|
Plasma::Plasma
|
|
KF6::I18n
|
|
KF6::Service
|
|
)
|