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:
-rw-r--r--make.bat9
1 files changed, 7 insertions, 2 deletions
diff --git a/make.bat b/make.bat
index fb3b4b859db..022075805e4 100644
--- a/make.bat
+++ b/make.bat
@@ -105,10 +105,8 @@ if "%BUILD_ARCH%"=="" (
)
) else if "%BUILD_ARCH%"=="x64" (
set WINDOWS_ARCH= Win64
- set MSBUILD_PLATFORM=x64
) else if "%BUILD_ARCH%"=="x86" (
set WINDOWS_ARCH=
- set MSBUILD_PLATFORM=win32
)
if "%BUILD_VS_VER%"=="" (
@@ -116,6 +114,13 @@ if "%BUILD_VS_VER%"=="" (
set BUILD_VS_YEAR=2013
)
+if "%BUILD_ARCH%"=="x64" (
+ set MSBUILD_PLATFORM=x64
+ ) else if "%BUILD_ARCH%"=="x86" (
+ set MSBUILD_PLATFORM=win32
+)
+
+
set BUILD_DIR=%BUILD_DIR%_%TARGET%_%BUILD_ARCH%_vc%BUILD_VS_VER%_%BUILD_TYPE%