2025-07-15 02:05:18 +00:00
|
|
|
# SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
2022-06-08 22:09:35 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
2025-07-16 17:05:56 +00:00
|
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"plasma_applet_org.kde.plasma.mobile.homescreen.halcyon\")
|
|
|
|
|
|
2025-07-15 02:05:18 +00:00
|
|
|
plasma_add_applet(org.kde.plasma.mobile.homescreen.halcyon
|
|
|
|
|
QML_SOURCES
|
|
|
|
|
qml/Clock.qml
|
|
|
|
|
qml/FavoritesAppDelegate.qml
|
|
|
|
|
qml/FavoritesGrid.qml
|
|
|
|
|
qml/FavoritesView.qml
|
|
|
|
|
qml/FolderGrid.qml
|
|
|
|
|
qml/GridAppDelegate.qml
|
|
|
|
|
qml/GridAppList.qml
|
|
|
|
|
qml/HomeScreen.qml
|
|
|
|
|
qml/main.qml
|
|
|
|
|
qml/SearchWidget.qml
|
2025-10-05 15:32:16 +00:00
|
|
|
qml/config.qml
|
2025-07-15 02:05:18 +00:00
|
|
|
CPP_SOURCES
|
|
|
|
|
application.cpp
|
|
|
|
|
applicationfolder.cpp
|
|
|
|
|
applicationlistmodel.cpp
|
|
|
|
|
halcyonsettings.cpp
|
|
|
|
|
homescreen.cpp
|
|
|
|
|
pinnedmodel.cpp
|
|
|
|
|
windowlistener.cpp
|
2022-06-08 22:09:35 +00:00
|
|
|
)
|
|
|
|
|
|
2025-07-15 02:05:18 +00:00
|
|
|
ecm_target_qml_sources(org.kde.plasma.mobile.homescreen.halcyon SOURCES
|
|
|
|
|
qml/settings/SettingsScreen.qml
|
2025-10-05 15:32:16 +00:00
|
|
|
qml/settings/ConfigGeneral.qml
|
2025-07-15 02:05:18 +00:00
|
|
|
PATH settings
|
|
|
|
|
)
|
2022-06-08 22:09:35 +00:00
|
|
|
|
2025-07-15 02:05:18 +00:00
|
|
|
target_link_libraries(org.kde.plasma.mobile.homescreen.halcyon PRIVATE
|
2022-06-08 22:09:35 +00:00
|
|
|
Qt::Gui
|
|
|
|
|
Qt::Qml
|
|
|
|
|
Qt::Quick
|
2023-11-23 22:42:47 +00:00
|
|
|
Plasma::Plasma
|
2025-06-25 23:22:58 +00:00
|
|
|
Plasma::KWaylandClient
|
2023-03-02 07:19:14 +00:00
|
|
|
KF6::I18n
|
|
|
|
|
KF6::Service
|
|
|
|
|
KF6::KIOGui
|
2025-07-15 02:05:18 +00:00
|
|
|
KF6::JobWidgets
|
|
|
|
|
KF6::WindowSystem)
|