mirror of
https://github.com/KDE/krfb
synced 2026-07-01 07:41:17 -07:00
19 lines
465 B
CMake
19 lines
465 B
CMake
|
|
include_directories (${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
||
|
|
)
|
||
|
|
|
||
|
|
set (krfb_events_x11_SRCS
|
||
|
|
x11events.cpp
|
||
|
|
x11eventsplugin.cpp
|
||
|
|
)
|
||
|
|
|
||
|
|
add_library (krfb_events_x11 MODULE ${krfb_events_x11_SRCS})
|
||
|
|
|
||
|
|
target_link_libraries (krfb_events_x11
|
||
|
|
${X11_XTest_LIB}
|
||
|
|
KF5::CoreAddons
|
||
|
|
krfbprivate
|
||
|
|
)
|
||
|
|
|
||
|
|
install (TARGETS krfb_events_x11 DESTINATION ${PLUGIN_INSTALL_DIR}/krfb)
|