mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
27 lines
859 B
CMake
27 lines
859 B
CMake
# SPDX-FileCopyrightText: 2022-2023 Devin Lin <devin@kde.org>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set(homescreen_SRCS
|
|
homescreen.cpp
|
|
)
|
|
|
|
add_library(org.kde.plasma.mobile.homescreen.halcyon MODULE ${homescreen_SRCS})
|
|
|
|
target_link_libraries(org.kde.plasma.mobile.homescreen.halcyon
|
|
Qt::Gui
|
|
Qt::Qml
|
|
Qt::Quick
|
|
KF6::Plasma
|
|
KF6::I18n
|
|
KF6::Service
|
|
KF6::KIOGui
|
|
KF6::Notifications
|
|
Plasma::KWaylandClient
|
|
KF6::WindowSystem
|
|
)
|
|
|
|
install(TARGETS org.kde.plasma.mobile.homescreen.halcyon DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasma/applets)
|
|
|
|
plasma_install_package(package org.kde.plasma.mobile.homescreen.halcyon)
|
|
|
|
add_subdirectory(plugin)
|