Files
libssh/examples/CMakeLists.txt
Aris Adamantiadis f90ae73b6d Refactored the connect_ssh example function
into a new file
2009-09-13 14:03:34 +03:00

17 lines
274 B
CMake

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})