mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
16 lines
541 B
CMake
16 lines
541 B
CMake
project(satellitecomponents)
|
|
|
|
set(satellitecomponents_SRCS
|
|
satellitecomponentsplugin.cpp
|
|
applicationlistmodel.cpp
|
|
)
|
|
|
|
add_library(satellitecomponentsplugin SHARED ${satellitecomponents_SRCS})
|
|
target_link_libraries(satellitecomponentsplugin Qt5::Core Qt5::Widgets Qt5::Qml Qt5::Quick KF5::Declarative KF5::I18n KF5::KIOCore KF5::KIOWidgets)
|
|
|
|
install(TARGETS satellitecomponentsplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/satellite/components)
|
|
|
|
|
|
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/satellite/components)
|
|
|
|
|