mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
20 lines
717 B
CMake
20 lines
717 B
CMake
# SPDX-FileCopyrightText: 2015-2016 Marco Martin <mart@kde.org>
|
|
# SPDX-FileCopyrightText: 2021 Aleix Pol <apol@kde.org>
|
|
# SPDX-FileCopyrightText: 2021 Nicolas Fella <nicolas.fella@kde.org>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
add_library(org.kde.plasma.mobile.taskpanel MODULE taskpanel.cpp ${DBUS_SRCS})
|
|
|
|
target_link_libraries(org.kde.plasma.mobile.taskpanel
|
|
Qt::Gui
|
|
Qt::DBus
|
|
Qt::Qml
|
|
Qt::Quick
|
|
KF6::Plasma
|
|
)
|
|
|
|
|
|
install(TARGETS org.kde.plasma.mobile.taskpanel DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasma/applets)
|
|
|
|
plasma_install_package(package org.kde.plasma.mobile.taskpanel)
|
|
|