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 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. )