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

123456789101112131415
  1. include_directories(${CMAKE_SOURCE_DIR}/common)
  2. add_library(test_util STATIC util.cxx)
  3. add_executable(convperf convperf.cxx)
  4. target_link_libraries(convperf test_util rfb)
  5. add_executable(conv conv.cxx)
  6. target_link_libraries(conv rfb)
  7. add_executable(decperf decperf.cxx)
  8. target_link_libraries(decperf test_util rfb)
  9. add_executable(encperf encperf.cxx)
  10. target_link_libraries(encperf test_util rfb)