mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Move most of the homescreen pieces in a QML import that can be reused making it easier to do alternative homescreens
27 lines
794 B
CMake
27 lines
794 B
CMake
|
|
|
|
set(mobilehomescreencomponentsplugin_SRCS
|
|
mobilehomescreencomponentsplugin.cpp
|
|
applicationlistmodel.cpp
|
|
favoritesmodel.cpp
|
|
homescreenutils.cpp
|
|
)
|
|
|
|
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)
|