1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-05-17 19:21:11 +03:00
libssh/tests/benchmarks/CMakeLists.txt
2010-12-28 13:17:27 +01:00

22 lines
364 B
CMake

project(libssh-benchmarks C)
set(benchmarks_SRCS
bench_scp.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)