Files
slippi-ssbm-asm/build-console-all.bat
Calvin Keats 422bb7838d add UCF 0.84
2023-05-12 00:28:29 -05:00

37 lines
1.1 KiB
Batchfile

@echo off
echo Building console_core.json for Port A...
gecko build -c console_core.json -defsym "STG_EXIIndex=0" -o "Output/Console/g_core_porta.bin" -batched
echo.
echo Building console_core.json...
gecko build -c console_core.json -defsym "STG_EXIIndex=1" -o "Output/Console/g_core.bin" -batched
echo.
set list=console_UCF.json
set list=%list%;console_UCF_stealth.json
set list=%list%;console_UCF_084.json
set list=%list%;console_UCF_084_stealth.json
set list=%list%;console_mods_stealth.json
set list=%list%;console_mods_tournament.json
set list=%list%;console_mods_friendlies.json
set list=%list%;console_PAL.json
set list=%list%;console_stages_stadium.json
set list=%list%;console_stages_all.json
set list=%list%;console_gameplay_lgl.json
set list=%list%;console_gameplay_wobbling.json
set list=%list%;console_gameplay_both.json
set list=%list%;console_lag_pd.json
set list=%list%;console_lag_pdhalfvb.json
set list=%list%;console_screen_wide.json
set list=%list%;console_screen_wide_shutters.json
set list=%list%;console_safety.json
set list=%list%;console_crash_output.json
for %%a in (%list%) do (
echo Building %%a...
gecko build -c %%a
echo.
)
pause