kwin/killer/CMakeLists.txt
Hrvoje Senjan 79d29096f2 Drop explicit Qt5Widgets_EXECUTABLE_COMPILE_FLAGS
It is automagically pulled in by imported Qt5:: targets,
and also fixes build where POSITION_INDEPENDENT_CODE is not available.

REVIEW: 119237
2014-07-12 09:27:36 +02:00

16 lines
350 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
Qt5::Widgets
Qt5::X11Extras
KF5::Auth
KF5::I18n
KF5::WidgetsAddons
)
install(TARGETS kwin_killer_helper DESTINATION ${LIBEXEC_INSTALL_DIR} )