mirror of
https://github.com/KDE/latte-dock.git
synced 2024-12-26 23:21:37 +03:00
ac99708315
--improve types and references and add types splitted at better places. So now we have - LatteCore.Types that are global for all components - LatteTasks.Types that are private to tasks plasmoid - LatteContainment.Types that are private to latte containment
19 lines
696 B
CMake
19 lines
696 B
CMake
add_definitions(-DTRANSLATION_DOMAIN=\"plasma_applet_org.kde.latte.containment\")
|
|
configure_file(metadata.desktop.cmake ${CMAKE_CURRENT_SOURCE_DIR}/package/metadata.desktop)
|
|
|
|
plasma_install_package(package org.kde.latte.containment)
|
|
|
|
set(containment_SRCS
|
|
plugin/types.cpp
|
|
plugin/lattecontainmentplugin.cpp
|
|
)
|
|
|
|
add_library(lattecontainmentplugin SHARED ${containment_SRCS})
|
|
|
|
target_link_libraries(lattecontainmentplugin
|
|
Qt5::Core
|
|
Qt5::Qml)
|
|
|
|
install(TARGETS lattecontainmentplugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/latte/private/containment)
|
|
install(FILES plugin/qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/latte/private/containment)
|