2021-12-23 16:02:41 +00:00
|
|
|
# SPDX-FileCopyrightText: 2021 Devin Lin <devin@kde.org>
|
|
|
|
|
# SPDX-FileCopyrightText: 2021 Marco Martin <mart@kde.org>
|
|
|
|
|
# SPDX-FileCopyrightText: 2021 Aleix Pol <apol@kde.org>
|
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2021-03-18 14:07:33 +00:00
|
|
|
|
|
|
|
|
set(mobilehomescreencomponentsplugin_SRCS
|
|
|
|
|
mobilehomescreencomponentsplugin.cpp
|
|
|
|
|
applicationlistmodel.cpp
|
|
|
|
|
favoritesmodel.cpp
|
|
|
|
|
homescreenutils.cpp
|
2021-07-14 13:39:43 +00:00
|
|
|
)
|
2021-03-18 14:07:33 +00:00
|
|
|
|
|
|
|
|
add_library(mobilehomescreencomponentsplugin ${mobilehomescreencomponentsplugin_SRCS})
|
|
|
|
|
|
|
|
|
|
target_link_libraries(mobilehomescreencomponentsplugin
|
|
|
|
|
PUBLIC
|
|
|
|
|
Qt::Core
|
|
|
|
|
PRIVATE
|
|
|
|
|
Qt::Qml
|
|
|
|
|
Qt::Quick
|
|
|
|
|
KF5::KIOGui
|
|
|
|
|
KF5::Plasma
|
|
|
|
|
KF5::Notifications
|
|
|
|
|
KF5::PlasmaQuick
|
|
|
|
|
KF5::WaylandClient
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
install(TARGETS mobilehomescreencomponentsplugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/private/mobilehomescreencomponents)
|
|
|
|
|
|
|
|
|
|
install(DIRECTORY qml/ DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/private/mobilehomescreencomponents)
|