mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-09-17 00:22:04 +03:00
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
12 lines
248 B
CMake
12 lines
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)
|