You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 728B

1234567891011121314151617181920212223
  1. include_directories(${CMAKE_SOURCE_DIR}/common)
  2. include_directories(${CMAKE_SOURCE_DIR}/vncviewer)
  3. add_executable(conv conv.cxx)
  4. target_link_libraries(conv rfb)
  5. add_executable(convertlf convertlf.cxx)
  6. target_link_libraries(convertlf rfb)
  7. add_executable(gesturehandler gesturehandler.cxx ../../vncviewer/GestureHandler.cxx)
  8. target_link_libraries(gesturehandler rfb)
  9. add_executable(hostport hostport.cxx)
  10. target_link_libraries(hostport rfb)
  11. add_executable(pixelformat pixelformat.cxx)
  12. target_link_libraries(pixelformat rfb)
  13. add_executable(unicode unicode.cxx)
  14. target_link_libraries(unicode rfb)
  15. add_executable(emulatemb emulatemb.cxx ../../vncviewer/EmulateMB.cxx)
  16. target_link_libraries(emulatemb rfb ${GETTEXT_LIBRARIES})