1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-01 11:26:52 +03:00

Try to find ARGP on solaris, BSD

Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Aris Adamantiadis
2013-02-11 21:41:34 +01:00
committed by Andreas Schneider
parent ff30a8feb0
commit 2b54db7603

View File

@ -11,6 +11,10 @@ include_directories(
${CMAKE_BINARY_DIR}
)
if (BSD OR SOLARIS)
find_package(Argp)
endif (BSD OR SOLARIS)
if (LINUX)
add_executable(libssh_scp libssh_scp.c ${examples_SRCS})
target_link_libraries(libssh_scp ${LIBSSH_SHARED_LIBRARY})