2019-09-12 20:13:47 +02:00
|
|
|
if EXIST %PYTHON% (
|
|
|
|
|
goto detect_python_done
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
echo python not found in lib folder
|
|
|
|
|
exit /b 1
|
|
|
|
|
|
|
|
|
|
:detect_python_done
|
|
|
|
|
|
|
|
|
|
REM Use -B to avoid writing __pycache__ in lib directory and causing update conflicts.
|
2025-10-15 08:14:17 +00:00
|
|
|
%PYTHON% -B %BLENDER_DIR%\build_files\utils\make_test.py --git-command "%GIT%" --ctest-command="%CTEST%" --config="%BUILD_TYPE%" %BUILD_DIR%
|
2019-09-12 20:13:47 +02:00
|
|
|
|
|
|
|
|
:EOF
|