mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-06 18:29:50 +09:00
BUG: https://red.libssh.org/issues/163 Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
41 lines
494 B
CMake
41 lines
494 B
CMake
project(libssh-headers C)
|
|
|
|
set(libssh_HDRS
|
|
callbacks.h
|
|
libssh.h
|
|
ssh2.h
|
|
legacy.h
|
|
libsshpp.hpp
|
|
)
|
|
|
|
if (WITH_SFTP)
|
|
set(libssh_HDRS
|
|
${libssh_HDRS}
|
|
sftp.h
|
|
)
|
|
endif (WITH_SFTP)
|
|
|
|
if (WITH_SSH1)
|
|
set(libssh_HDRS
|
|
${libssh_HDRS}
|
|
ssh1.h
|
|
)
|
|
endif (WITH_SSH1)
|
|
|
|
if (WITH_SERVER)
|
|
set(libssh_HDRS
|
|
${libssh_HDRS}
|
|
server.h
|
|
)
|
|
endif (WITH_SERVER)
|
|
|
|
install(
|
|
FILES
|
|
${libssh_HDRS}
|
|
DESTINATION
|
|
${INCLUDE_INSTALL_DIR}/${APPLICATION_NAME}
|
|
COMPONENT
|
|
headers
|
|
)
|
|
|