aboutsummaryrefslogtreecommitdiff
path: root/examples/CMakeLists.txt
blob: b0d40d9f99853d4c5a9f843736df58f17afca3fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
project(libssh-examples C)

set(examples_SRCS
  libssh_scp.c
  authentication.c
  knownhosts.c
  connect_ssh.c
)

include_directories(
  ${LIBSSH_PUBLIC_INCLUDE_DIRS}
)

add_executable(libssh_scp ${examples_SRCS})

target_link_libraries(libssh_scp ${LIBSSH_SHARED_LIBRARY})