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:
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat19
1 files changed, 13 insertions, 6 deletions
diff --git a/make.bat b/make.bat
index b0323cde1bb..ea80bd591f7 100644
--- a/make.bat
+++ b/make.bat
@@ -26,12 +26,6 @@ if "%SHOW_HELP%" == "1" (
goto EOF
)
-if "%BUILD_UPDATE%" == "1" (
- call "%BLENDER_DIR%\build_files\windows\update_sources.cmd"
- goto EOF
-)
-
-
if "%FORMAT%" == "1" (
call "%BLENDER_DIR%\build_files\windows\format.cmd"
goto EOF
@@ -54,6 +48,14 @@ if "%BUILD_VS_YEAR%" == "" (
)
)
+if "%BUILD_UPDATE%" == "1" (
+ call "%BLENDER_DIR%\build_files\windows\check_libraries.cmd"
+ if errorlevel 1 goto EOF
+
+ call "%BLENDER_DIR%\build_files\windows\update_sources.cmd"
+ goto EOF
+)
+
call "%BLENDER_DIR%\build_files\windows\set_build_dir.cmd"
echo Building blender with VS%BUILD_VS_YEAR% for %BUILD_ARCH% in %BUILD_DIR%
@@ -61,6 +63,11 @@ echo Building blender with VS%BUILD_VS_YEAR% for %BUILD_ARCH% in %BUILD_DIR%
call "%BLENDER_DIR%\build_files\windows\check_libraries.cmd"
if errorlevel 1 goto EOF
+if "%TEST%" == "1" (
+ call "%BLENDER_DIR%\build_files\windows\test.cmd"
+ goto EOF
+)
+
call "%BLENDER_DIR%\build_files\windows\check_submodules.cmd"
if errorlevel 1 goto EOF