You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
527 B
CMake
17 lines
527 B
CMake
6 years ago
|
set(indicator_SRCS
|
||
|
indicatorpackage.cpp
|
||
|
)
|
||
|
|
||
|
add_library(latte_packagestructure_indicator MODULE ${indicator_SRCS})
|
||
|
|
||
|
target_link_libraries(latte_packagestructure_indicator
|
||
|
KF5::Declarative
|
||
|
KF5::I18n
|
||
|
KF5::Package
|
||
|
)
|
||
|
|
||
|
kcoreaddons_desktop_to_json(latte_packagestructure_indicator latte-packagestructure-indicator.desktop)
|
||
|
|
||
|
install(TARGETS latte_packagestructure_indicator DESTINATION ${KDE_INSTALL_PLUGINDIR}/kpackage/packagestructure)
|
||
|
install(FILES latte-indicator.desktop DESTINATION ${KDE_INSTALL_KSERVICETYPES5DIR})
|