aboutsummaryrefslogtreecommitdiff
path: root/include/libssh/CMakeLists.txt
blob: af7b2ebbe800a6e2aae787eee33dd093137a4bfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
)