aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/CMakeLists.txt
blob: eb843935821327ea2e52225d5cda659ee548aa27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)