kwin/plugins/kpackage/windowswitcher/CMakeLists.txt
Vlad Zagorodniy b106579d0f Move package structure plugins to plugins dir
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
2019-03-11 10:57:13 +02:00

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)