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

build_ninja.cmd « windows « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6b266e206d2ca487f7b4e465d398affcd384b8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if "%NOBUILD%"=="1" goto EOF
set HAS_ERROR=
cd %BUILD_DIR%
echo %TIME% > buildtime.txt
ninja install
if errorlevel 1 (
		set HAS_ERROR=1
	)
echo %TIME% >>buildtime.txt
cd %BLENDER_DIR%

if "%HAS_ERROR%" == "1" (
		echo Error during build, see %BUILD_DIR%\Build.log for details 
		exit /b 1
)
:EOF