From 390d9e53dca2b2228871b5a3ce3ec88176424fdb Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 25 Mar 2009 16:17:11 +0000 Subject: Fix win32 builds. git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@286 7dcaeef0-15fb-0310-b436-a5af3365683c --- cmake/Modules/DefineInstallationPaths.cmake | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/cmake/Modules/DefineInstallationPaths.cmake b/cmake/Modules/DefineInstallationPaths.cmake index 13c57a67..e45977d7 100644 --- a/cmake/Modules/DefineInstallationPaths.cmake +++ b/cmake/Modules/DefineInstallationPaths.cmake @@ -94,13 +94,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(HTML_INSTALL_DIR doc/HTML) - SET(ICON_INSTALL_DIR .) - SET(SOUND_INSTALL_DIR .) - SET(LOCALE_INSTALL_DIR lang) + set(BIN_INSTALL_DIR "." CACHE PATH "-") + set(SBIN_INSTALL_DIR "." CACHE PATH "-") + set(LIB_INSTALL_DIR "lib" CACHE PATH "-") + set(INCLUDE_INSTALL_DIR "include" CACHE PATH "-") + set(PLUGIN_INSTALL_DIR "plugins" CACHE PATH "-") + set(HTML_INSTALL_DIR "doc/HTML" CACHE PATH "-") + set(ICON_INSTALL_DIR "." CACHE PATH "-") + set(SOUND_INSTALL_DIR "." CACHE PATH "-") + set(LOCALE_INSTALL_DIR "lang" CACHE PATH "-") endif (WIN32) -- cgit