b106579d0f
Summary: Package structure plugins are not that special so move them to the corresponding directory. Test Plan: Compiles. Reviewers: #kwin Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D18685
16 lines
450 B
CMake
16 lines
450 B
CMake
add_definitions(-DTRANSLATION_DOMAIN=\"kwin_package_effect\")
|
|
|
|
set(effect_SRCS
|
|
effect.cpp
|
|
)
|
|
|
|
add_library(kwin_packagestructure_effect MODULE ${effect_SRCS})
|
|
|
|
target_link_libraries(kwin_packagestructure_effect
|
|
KF5::I18n
|
|
KF5::Package
|
|
)
|
|
|
|
kcoreaddons_desktop_to_json(kwin_packagestructure_effect kwin-packagestructure-effect.desktop)
|
|
|
|
install(TARGETS kwin_packagestructure_effect DESTINATION ${KDE_INSTALL_PLUGINDIR}/kpackage/packagestructure)
|