2021-12-23 16:02:41 +00:00
|
|
|
# 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
|
|
|
|
|
|
2017-09-14 19:03:56 +00:00
|
|
|
set(phonepanel_SRCS
|
2023-01-24 07:51:18 +00:00
|
|
|
phonepanel.cpp
|
2017-09-14 19:03:56 +00:00
|
|
|
)
|
|
|
|
|
|
2023-03-05 19:27:11 +00:00
|
|
|
add_library(org.kde.plasma.mobile.panel MODULE ${phonepanel_SRCS})
|
2017-09-14 19:03:56 +00:00
|
|
|
|
2023-03-05 19:27:11 +00:00
|
|
|
target_link_libraries(org.kde.plasma.mobile.panel
|
2021-01-30 16:23:02 +00:00
|
|
|
Qt::Gui
|
|
|
|
|
Qt::DBus
|
2023-03-02 07:19:14 +00:00
|
|
|
KF6::Plasma
|
|
|
|
|
KF6::I18n
|
|
|
|
|
KF6::Service
|
2021-07-14 16:21:31 +00:00
|
|
|
)
|
2017-09-14 19:03:56 +00:00
|
|
|
|
2023-03-05 19:27:11 +00:00
|
|
|
install(TARGETS org.kde.plasma.mobile.panel DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasma/applets)
|
2022-04-20 22:42:11 +00:00
|
|
|
#install(FILES plasma-phonepanel-default.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR})
|
2017-09-14 19:03:56 +00:00
|
|
|
|
2023-03-05 02:40:06 +00:00
|
|
|
plasma_install_package(package org.kde.plasma.mobile.panel)
|
2017-09-14 19:03:56 +00:00
|
|
|
|