您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CMakeLists.txt 294B

12345678910111213
  1. include_directories(${CMAKE_BINARY_DIR}/win)
  2. add_executable(vncconfig WIN32
  3. Legacy.cxx
  4. PasswordDialog.cxx
  5. vncconfig.cxx
  6. vncconfig.rc)
  7. target_link_libraries(vncconfig rfb_win32 rfb network rdr ws2_32.lib)
  8. install(TARGETS vncconfig
  9. RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}
  10. )