8f6edea521
krunner stuff doesn't really belong in kwin, it has nothing to do with compositing or any other things that are the domain of compositors. Given that, being as a plugin suits the krunner integration stuff best.
12 lines
509 B
CMake
12 lines
509 B
CMake
set(krunnerintegration_SOURCES
|
|
main.cpp
|
|
windowsrunnerinterface.cpp
|
|
)
|
|
|
|
qt5_add_dbus_adaptor(krunnerintegration_SOURCES org.kde.krunner1.xml windowsrunnerinterface.h KWin::WindowsRunner)
|
|
|
|
add_library(krunnerintegration MODULE ${krunnerintegration_SOURCES})
|
|
target_link_libraries(krunnerintegration kwin KF5::Runner)
|
|
|
|
install(TARGETS krunnerintegration DESTINATION ${PLUGIN_INSTALL_DIR}/kwin/plugins/)
|
|
install(FILES kwin-runner-windows.desktop DESTINATION ${KDE_INSTALL_DATAROOTDIR}/krunner/dbusplugins)
|