1
0
mirror of https://github.com/tmate-io/tmate-ssh-server.git synced 2020-11-18 19:53:51 -08:00
Nicolas Viennot 0f7ccda4fb Adding libssh
2013-06-10 02:50:07 -04:00

22 lines
387 B
CMake

project(libssh-benchmarks C)
set(benchmarks_SRCS
bench_scp.c bench_sftp bench_raw.c benchmarks.c latency.c
)
include_directories(
${LIBSSH_PUBLIC_INCLUDE_DIRS}
)
add_executable(benchmarks ${benchmarks_SRCS})
target_link_libraries(benchmarks ${LIBSSH_SHARED_LIBRARY})
include_directories(
${LIBSSH_PUBLIC_INCLUDE_DIRS}
${CMAKE_BINARY_DIR}
)
if (WITH_SFTP)
endif (WITH_SFTP)