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 400B

123456789101112131415161718
  1. include_directories(${CMAKE_BINARY_DIR}/win ${CMAKE_CURRENT_SOURCE_DIR})
  2. add_executable(winvnc4 WIN32
  3. buildTime.cxx
  4. ControlPanel.cxx
  5. ManagedListener.cxx
  6. QueryConnectDialog.cxx
  7. STrayIcon.cxx
  8. VNCServerService.cxx
  9. VNCServerWin32.cxx
  10. winvnc.cxx
  11. winvnc.rc)
  12. target_link_libraries(winvnc4 rfb rfb_win32 network rdr ws2_32.lib)
  13. install(TARGETS winvnc4
  14. RUNTIME DESTINATION ${BIN_DIR}
  15. )