mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 14:43:09 +00:00
the application list is only used in that containment for now: don't create an extra qml import just for that, but put it into the c++ applet for the homescreen instead to make sure nobody else uses it at least until we are really sure is needed elsewhere
19 lines
597 B
CMake
19 lines
597 B
CMake
set(quicksettings_SRCS
|
|
quicksettings.cpp
|
|
)
|
|
|
|
add_library(plasma_applet_quicksettings MODULE ${quicksettings_SRCS})
|
|
|
|
kcoreaddons_desktop_to_json(plasma_applet_quicksettings package/metadata.desktop)
|
|
|
|
target_link_libraries(plasma_applet_quicksettings
|
|
Qt5::Gui
|
|
KF5::Plasma
|
|
KF5::I18n)
|
|
|
|
|
|
install(TARGETS plasma_applet_quicksettings DESTINATION ${PLUGIN_INSTALL_DIR}/plasma/applets)
|
|
#install(FILES plasma-quicksettings-default.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
|
|
plasma_install_package(package org.kde.phone.quicksettings)
|
|
|