Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2010-09-03 02:04:33 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-09-03 02:04:33 +0400
commite03437a34a5974016bd1d35eed962ff4eaa24a92 (patch)
tree2e00551c22ce56f28e0d7ff6706a9a0cd2a77832 /source/creator
parentd372fc178c6488e71d14a7fc56e9fd9ee27812e3 (diff)
Fix [#23638] Missing directory creation
Reported and patched by Mariusz Maximus I overlooked this one while fixing up for win64 compiling, because I had already manually created this directory.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 0618aed14d1..ea6507bfc7b 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -297,6 +297,7 @@ IF(WITH_INSTALL)
MAIN_DEPENDENCY blender
COMMAND if not exist \"${TARGETDIR}\\${BLENDER_VERSION}\" mkdir \"${TARGETDIR}\\${BLENDER_VERSION}\"
COMMAND if not exist \"${TARGETDIR}\\${BLENDER_VERSION}\\scripts\" mkdir \"${TARGETDIR}\\${BLENDER_VERSION}\\scripts\"
+ COMMAND if not exist \"${TARGETDIR}\\${BLENDER_VERSION}\\config\" mkdir \"${TARGETDIR}\\${BLENDER_VERSION}\\config\"
COMMAND if not exist \"${TARGETDIR}\\plugins\" mkdir \"${TARGETDIR}\\plugins\"
COMMAND copy /Y \"${CMAKE_SOURCE_DIR}\\release\\bin\\.blender\\.bfont.ttf\" \"${TARGETDIR}\\${BLENDER_VERSION}\\config\\\"
COMMAND xcopy /E /Y \"${CMAKE_SOURCE_DIR}\\release\\scripts\\*.*\" \"${TARGETDIR}\\${BLENDER_VERSION}\\scripts\\\"