1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-27 13:21:11 +03:00
Files
libssh/examples/CMakeLists.txt
2009-07-30 11:11:00 +02:00

16 lines
258 B
CMake

project(libssh-examples C)
set(examples_SRCS
libssh_scp.c
authentication.c
knownhosts.c
)
include_directories(
${LIBSSH_PUBLIC_INCLUDE_DIRS}
)
add_executable(libssh_scp ${examples_SRCS})
target_link_libraries(libssh_scp ${LIBSSH_SHARED_LIBRARY})