kwin/killer/CMakeLists.txt
Martin Gräßlin 67590e7240 Use KF5::KInterProcessWindowing in target_link_libraries
Seems to have changed in frameworks. Unbreaks the build.
2013-09-25 10:18:06 +02:00

18 lines
496 B
CMake

########### next target ###############
set(kwin_killer_helper_SRCS killer.cpp )
kde4_add_executable(kwin_killer_helper ${kwin_killer_helper_SRCS})
set_target_properties(kwin_killer_helper PROPERTIES COMPILE_FLAGS ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS})
target_link_libraries(kwin_killer_helper
Qt5::Widgets
Qt5::X11Extras
KF5::KAuth
KF5::KI18n
KF5::KInterProcessWindowing
KF5::KWidgetsAddons
)
install(TARGETS kwin_killer_helper DESTINATION ${LIBEXEC_INSTALL_DIR} )