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