mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
19 lines
568 B
CMake
19 lines
568 B
CMake
set(phonepanel_SRCS
|
|
phonepanel.cpp
|
|
)
|
|
|
|
add_library(plasma_applet_phonepanel MODULE ${phonepanel_SRCS})
|
|
|
|
kcoreaddons_desktop_to_json(plasma_applet_phonepanel package/metadata.desktop)
|
|
|
|
target_link_libraries(plasma_applet_phonepanel
|
|
Qt5::Gui
|
|
KF5::Plasma
|
|
KF5::I18n)
|
|
|
|
|
|
install(TARGETS plasma_applet_phonepanel DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasma/applets)
|
|
#install(FILES plasma-phonepanel-default.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
|
|
plasma_install_package(package org.kde.phone.panel)
|
|
|