aboutsummaryrefslogtreecommitdiff
path: root/cmake/Modules
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-03-08 14:05:41 +0000
committerAndreas Schneider <mail@cynapses.org>2009-03-08 14:05:41 +0000
commitb4cebfb03d1b234e0287397d0ef96d335f5999ac (patch)
tree80839bf162b97664dd66a4dc49457d81646b1ae3 /cmake/Modules
parent461d9413d3c32066953f4ed97b8d4d8fc6f169b0 (diff)
downloadlibssh-b4cebfb03d1b234e0287397d0ef96d335f5999ac.tar.gz
libssh-b4cebfb03d1b234e0287397d0ef96d335f5999ac.tar.xz
libssh-b4cebfb03d1b234e0287397d0ef96d335f5999ac.zip
Fix compilation and installation of libssh.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@250 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'cmake/Modules')
-rw-r--r--cmake/Modules/DefineInstallationPaths.cmake15
1 files changed, 8 insertions, 7 deletions
diff --git a/cmake/Modules/DefineInstallationPaths.cmake b/cmake/Modules/DefineInstallationPaths.cmake
index 5c4caf7..15f2f48 100644
--- a/cmake/Modules/DefineInstallationPaths.cmake
+++ b/cmake/Modules/DefineInstallationPaths.cmake
@@ -112,13 +112,14 @@ endif (UNIX)
if (WIN32)
# Same same
- SET(BIN_INSTALL_DIR .)
- SET(SBIN_INSTALL_DIR .)
- SET(LIB_INSTALL_DIR .)
- SET(PLUGIN_INSTALL_DIR plugins)
+ SET(BIN_INSTALL_DIR bin)
+ SET(SBIN_INSTALL_DIR bin)
+ SET(LIB_INSTALL_DIR lib)
+ SET(INCLUDE_INSTALL_DIR include)
+ SET(PLUGIN_INSTALL_DIR bin)
SET(HTML_INSTALL_DIR doc/HTML)
- SET(ICON_INSTALL_DIR .)
- SET(SOUND_INSTALL_DIR .)
- SET(LOCALE_INSTALL_DIR lang)
+ SET(ICON_INSTALL_DIR bin)
+ SET(SOUND_INSTALL_DIR bin)
+ SET(LOCALE_INSTALL_DIR bin)
endif (WIN32)