summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/CMakeLists.txt3
-rw-r--r--include/libssh/CMakeLists.txt18
2 files changed, 21 insertions, 0 deletions
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt
new file mode 100644
index 00000000..e480770b
--- /dev/null
+++ b/include/CMakeLists.txt
@@ -0,0 +1,3 @@
+project(headers)
+
+add_subdirectory(libssh)
diff --git a/include/libssh/CMakeLists.txt b/include/libssh/CMakeLists.txt
new file mode 100644
index 00000000..3e1c3d50
--- /dev/null
+++ b/include/libssh/CMakeLists.txt
@@ -0,0 +1,18 @@
+project(libssh-headers)
+
+set(libssh_HDRS
+ libssh.h
+ crypto.h
+ server.h
+ sftp.h
+ ssh1.h
+ ssh2.h
+)
+
+INSTALL(
+ FILES
+ ${libssh_HDRS}
+ DESTINATION
+ ${INCLUDE_INSTALL_DIR}/${APPLICATION_NAME}
+)
+