blob: e99c825a94aa3391a30669659797477c757e28a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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)
add_executable(encperf encperf.cxx)
target_link_libraries(encperf test_util rfb)
|