1 2 3 4 5 6 7 8 9
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)