mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-07 02:39:48 +09:00
The sk_api.h file added is a copy of the sk-api.h file in openSSH, including only the struct and constant definitions. This has been done to ensure compatibility with any security key middleware developed for openSSH. Signed-off-by: Praneeth Sarode <praneethsarode@gmail.com> Reviewed-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Eshan Kelkar <eshankelkar@galorithm.com>
54 lines
941 B
CMake
54 lines
941 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_SERVER)
|
|
set(libssh_HDRS
|
|
${libssh_HDRS}
|
|
server.h
|
|
)
|
|
|
|
if (WITH_SFTP)
|
|
set(libssh_HDRS
|
|
${libssh_HDRS}
|
|
sftpserver.h
|
|
)
|
|
endif (WITH_SFTP)
|
|
endif (WITH_SERVER)
|
|
|
|
if (WITH_FIDO2)
|
|
set(libssh_HDRS
|
|
${libssh_HDRS}
|
|
sk_api.h
|
|
)
|
|
endif (WITH_FIDO2)
|
|
|
|
install(
|
|
FILES
|
|
${libssh_HDRS}
|
|
DESTINATION
|
|
${CMAKE_INSTALL_INCLUDEDIR}/${APPLICATION_NAME}
|
|
COMPONENT
|
|
headers
|
|
)
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libssh_version.h.cmake
|
|
${libssh_BINARY_DIR}/include/libssh/libssh_version.h
|
|
@ONLY)
|
|
install(FILES ${libssh_BINARY_DIR}/include/libssh/libssh_version.h
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${APPLICATION_NAME}
|
|
COMPONENT headers)
|