Passthrough command line arguments to subscripts

main
Phillip Trudeau-Tavara 9 months ago
parent c3511ba954
commit 56187771ae

@ -1,5 +1,5 @@
@echo off
START /B remedybg.exe stop-debugging
call build_desktop_debug.bat
call build_desktop_debug.bat %*
remedybg.exe start-debugging

@ -10,7 +10,7 @@ set FLAGS=-O0 -g -DDEVTOOLS
set OUTPUT_FOLDER=build_web
call build_web_common.bat || goto :error
call build_web_common.bat %* || goto :error
@echo off

@ -5,13 +5,10 @@ pushd %~dp0%
rmdir /S /q build_web_release
mkdir build_web_release
call blender_export.bat || goto :error
call run_codegen.bat || goto :error
set FLAGS=-O0 -DNDEBUG
set OUTPUT_FOLDER=build_web_release
call build_web_common.bat || goto :error
call build_web_common.bat %* codegen || goto :error
goto :success

Loading…
Cancel
Save