
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
12 строки
248 B
CMake
12 строки
248 B
CMake
project(libssh-benchmarks C)
|
|
|
|
set(benchmarks_SRCS
|
|
bench_scp.c bench_sftp.c bench_raw.c benchmarks.c latency.c
|
|
)
|
|
|
|
include_directories(${libssh_BINARY_DIR})
|
|
|
|
add_executable(benchmarks ${benchmarks_SRCS})
|
|
|
|
target_link_libraries(benchmarks ssh::ssh)
|