blob: 8e2230528506a1f868bc741104deabbc3ecf3450 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
include_directories(${CMAKE_SOURCE_DIR}/common)
include_directories(${CMAKE_SOURCE_DIR}/vncviewer)
add_executable(conv conv.cxx)
target_link_libraries(conv rfb)
add_executable(convertlf convertlf.cxx)
target_link_libraries(convertlf rfb)
add_executable(gesturehandler gesturehandler.cxx ../../vncviewer/GestureHandler.cxx)
target_link_libraries(gesturehandler rfb)
add_executable(hostport hostport.cxx)
target_link_libraries(hostport rfb)
add_executable(pixelformat pixelformat.cxx)
target_link_libraries(pixelformat rfb)
add_executable(unicode unicode.cxx)
target_link_libraries(unicode rfb)
add_executable(emulatemb emulatemb.cxx ../../vncviewer/EmulateMB.cxx)
target_include_directories(emulatemb SYSTEM PUBLIC ${GETTEXT_INCLUDE_DIR})
target_link_libraries(emulatemb rfb ${GETTEXT_LIBRARIES})
|