aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-02-02 14:44:46 +0000
committerAndreas Schneider <mail@cynapses.org>2009-02-02 14:44:46 +0000
commit460d0b402bac86221fd94f086ef88f94f584df1f (patch)
tree5f04167dabc7bff9273a4dffafcba7b9d7f0a578 /include
parent234706548121cb9acf609b6cce71d53144143968 (diff)
downloadlibssh-460d0b402bac86221fd94f086ef88f94f584df1f.tar.gz
libssh-460d0b402bac86221fd94f086ef88f94f584df1f.tar.xz
libssh-460d0b402bac86221fd94f086ef88f94f584df1f.zip
Add Makefiles for the CMake build system.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@203 7dcaeef0-15fb-0310-b436-a5af3365683c
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}
+)
+