mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-07 10:40:28 +09:00
22 lines
340 B
CMake
22 lines
340 B
CMake
project(libssh-benchmarks C)
|
|
|
|
set(benchmarks_SRCS
|
|
|
|
)
|
|
|
|
include_directories(
|
|
${LIBSSH_PUBLIC_INCLUDE_DIRS}
|
|
)
|
|
|
|
add_executable(bench_scp bench_scp.c ${benchmarks_SRCS})
|
|
|
|
target_link_libraries(bench_scp ${LIBSSH_SHARED_LIBRARY})
|
|
|
|
include_directories(
|
|
${LIBSSH_PUBLIC_INCLUDE_DIRS}
|
|
${CMAKE_BINARY_DIR}
|
|
)
|
|
|
|
if (WITH_SFTP)
|
|
endif (WITH_SFTP)
|