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

123456789101112131415
  1. include_directories(SYSTEM ${X11_INCLUDE_DIR})
  2. include_directories(${CMAKE_SOURCE_DIR}/common)
  3. include_directories(${CMAKE_SOURCE_DIR}/unix/tx)
  4. add_executable(vncconfig
  5. buildtime.c
  6. vncExt.c
  7. vncconfig.cxx
  8. QueryConnectDialog.cxx)
  9. target_link_libraries(vncconfig tx rfb network rdr ${X11_LIBRARIES})
  10. install(TARGETS vncconfig DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})
  11. install(FILES vncconfig.man DESTINATION ${CMAKE_INSTALL_FULL_MANDIR}/man1 RENAME vncconfig.1)