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
522 B
CMake
16 lines
522 B
CMake
add_definitions(-DTRANSLATION_DOMAIN=\"kwin_package_windowswitcher\")
|
|
|
|
set(windowswitcher_SRCS
|
|
windowswitcher.cpp
|
|
)
|
|
|
|
add_library(kwin_packagestructure_windowswitcher MODULE ${windowswitcher_SRCS})
|
|
|
|
target_link_libraries(kwin_packagestructure_windowswitcher
|
|
KF5::I18n
|
|
KF5::Package
|
|
)
|
|
|
|
kcoreaddons_desktop_to_json(kwin_packagestructure_windowswitcher kwin-packagestructure-windowswitcher.desktop)
|
|
|
|
install(TARGETS kwin_packagestructure_windowswitcher DESTINATION ${KDE_INSTALL_PLUGINDIR}/kpackage/packagestructure)
|