2015-12-31 13:14:49 -05:00
|
|
|
@echo off
|
|
|
|
REM This batch file does an out-of-source CMake build in ../build_windows
|
|
|
|
REM This is for users who like to configure & build Blender with a single command.
|
2017-04-23 12:10:57 -04:00
|
|
|
setlocal EnableDelayedExpansion
|
2016-01-01 09:42:43 -05:00
|
|
|
setlocal ENABLEEXTENSIONS
|
2015-12-31 13:14:49 -05:00
|
|
|
set BLENDER_DIR=%~dp0
|
2018-05-25 12:24:01 -04:00
|
|
|
|
2018-05-25 19:57:13 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\reset_variables.cmd"
|
2016-11-16 22:13:58 -05:00
|
|
|
|
2018-05-25 19:57:13 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\check_spaces_in_path.cmd"
|
|
|
|
if errorlevel 1 goto EOF
|
2017-01-19 15:55:50 -05:00
|
|
|
|
2018-05-25 19:57:13 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\parse_arguments.cmd" %*
|
|
|
|
if errorlevel 1 goto EOF
|
2017-01-19 15:55:50 -05:00
|
|
|
|
2018-05-25 19:57:13 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\find_dependencies.cmd"
|
|
|
|
if errorlevel 1 goto EOF
|
2017-01-19 15:55:50 -05:00
|
|
|
|
2018-06-16 14:29:38 -04:00
|
|
|
if "%BUILD_SHOW_HASHES%" == "1" (
|
|
|
|
call "%BLENDER_DIR%\build_files\windows\show_hashes.cmd"
|
|
|
|
goto EOF
|
|
|
|
)
|
|
|
|
|
2018-05-25 19:57:13 -04:00
|
|
|
if "%SHOW_HELP%" == "1" (
|
|
|
|
call "%BLENDER_DIR%\build_files\windows\show_help.cmd"
|
2016-09-14 19:50:16 -04:00
|
|
|
goto EOF
|
|
|
|
)
|
2017-08-19 14:00:30 -04:00
|
|
|
|
2018-05-25 19:57:13 -04:00
|
|
|
if "%BUILD_UPDATE%" == "1" (
|
|
|
|
call "%BLENDER_DIR%\build_files\windows\update_sources.cmd"
|
2017-08-21 01:37:38 -04:00
|
|
|
goto EOF
|
2016-09-14 19:50:16 -04:00
|
|
|
)
|
2017-08-19 14:00:30 -04:00
|
|
|
|
2018-06-17 14:18:09 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\detect_architecture.cmd"
|
2016-10-01 12:22:28 -04:00
|
|
|
|
2018-05-25 19:57:13 -04:00
|
|
|
if "%BUILD_VS_YEAR%" == "" (
|
|
|
|
call "%BLENDER_DIR%\build_files\windows\autodetect_msvc.cmd"
|
|
|
|
if errorlevel 1 (
|
|
|
|
echo Visual Studio not found ^(try with the 'verbose' switch for more information^)
|
|
|
|
goto EOF
|
2017-12-11 03:28:40 -05:00
|
|
|
)
|
2018-05-25 19:57:13 -04:00
|
|
|
) else (
|
|
|
|
call "%BLENDER_DIR%\build_files\windows\detect_msvc%BUILD_VS_YEAR%.cmd"
|
|
|
|
if errorlevel 1 (
|
|
|
|
echo Visual Studio %BUILD_VS_YEAR% not found ^(try with the 'verbose' switch for more information^)
|
2016-01-01 14:30:19 -05:00
|
|
|
goto EOF
|
|
|
|
)
|
2016-01-01 02:47:30 -05:00
|
|
|
)
|
2017-04-26 10:46:35 -04:00
|
|
|
|
2019-04-16 09:34:32 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\check_libraries.cmd"
|
|
|
|
if errorlevel 1 goto EOF
|
|
|
|
|
|
|
|
if "%FORMAT%" == "1" (
|
|
|
|
call "%BLENDER_DIR%\build_files\windows\format.cmd"
|
|
|
|
goto EOF
|
|
|
|
)
|
|
|
|
|
2018-06-17 14:18:09 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\set_build_dir.cmd"
|
2015-12-31 13:14:49 -05:00
|
|
|
|
2018-05-25 19:57:13 -04:00
|
|
|
echo Building blender with VS%BUILD_VS_YEAR% for %BUILD_ARCH% in %BUILD_DIR%
|
2016-01-01 00:04:21 -05:00
|
|
|
|
2018-06-17 14:18:09 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\check_submodules.cmd"
|
2018-05-25 19:57:13 -04:00
|
|
|
if errorlevel 1 goto EOF
|
2016-01-01 00:04:21 -05:00
|
|
|
|
2018-05-25 23:46:42 -04:00
|
|
|
if "%BUILD_WITH_NINJA%" == "" (
|
2018-06-17 14:18:09 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\configure_msbuild.cmd"
|
2018-05-25 23:46:42 -04:00
|
|
|
if errorlevel 1 goto EOF
|
2016-01-01 00:04:21 -05:00
|
|
|
|
2018-06-17 14:18:09 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\build_msbuild.cmd"
|
2018-05-25 23:46:42 -04:00
|
|
|
if errorlevel 1 goto EOF
|
|
|
|
) else (
|
2018-06-17 14:18:09 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\configure_ninja.cmd"
|
2018-05-25 23:46:42 -04:00
|
|
|
if errorlevel 1 goto EOF
|
|
|
|
|
2018-06-17 14:18:09 -04:00
|
|
|
call "%BLENDER_DIR%\build_files\windows\build_ninja.cmd"
|
2018-05-25 23:46:42 -04:00
|
|
|
if errorlevel 1 goto EOF
|
|
|
|
)
|
2015-12-31 13:14:49 -05:00
|
|
|
|
2018-06-17 14:18:09 -04:00
|
|
|
:EOF
|