Files
libssh/include/libssh/CMakeLists.txt
Andreas Schneider 78b6e25ede Fix compilation of the server with option turned off.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@294 7dcaeef0-15fb-0310-b436-a5af3365683c
2009-03-28 21:58:54 +00:00

27 lines
311 B
CMake

project(libssh-headers C)
set(libssh_HDRS
libssh.h
crypto.h
sftp.h
ssh1.h
ssh2.h
)
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
)