aboutsummaryrefslogtreecommitdiff
path: root/cmake/Modules/DefineInstallationPaths.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/Modules/DefineInstallationPaths.cmake')
-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 5c4caf72..15f2f481 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)