kwin/helpers/killer/CMakeLists.txt
Nicolas Fella 99947c8bd8 Use versionless Qt cmake target
This makes it easier to build against both Qt5 and Qt6

GIT_SILENT
2021-01-30 17:18:21 +01:00

15 lines
349 B
CMake

########### next target ###############
set(kwin_killer_helper_SRCS killer.cpp)
add_executable(kwin_killer_helper ${kwin_killer_helper_SRCS})
target_link_libraries(kwin_killer_helper
KF5::AuthCore
KF5::I18n
KF5::WidgetsAddons
Qt::Widgets
Qt::X11Extras
)
install(TARGETS kwin_killer_helper DESTINATION ${LIBEXEC_INSTALL_DIR})