mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-22 16:13:13 +01:00
12 lines
381 B
CMake
12 lines
381 B
CMake
include_directories(${X11_INCLUDE_DIR})
|
|
|
|
add_executable(kasmxproxy
|
|
xxhash.c
|
|
kasmxproxy.c)
|
|
|
|
target_link_libraries(kasmxproxy ${X11_LIBRARIES} ${X11_XTest_LIB} ${X11_Xrandr_LIB}
|
|
${X11_Xcursor_LIB} ${X11_Xfixes_LIB})
|
|
|
|
install(TARGETS kasmxproxy DESTINATION ${BIN_DIR})
|
|
install(FILES kasmxproxy.man DESTINATION ${MAN_DIR}/man1 RENAME kasmxproxy.1)
|