-
Notifications
You must be signed in to change notification settings - Fork 72
/
build.bat
44 lines (38 loc) · 1.34 KB
/
build.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@echo off
echo Building netplay.json...
gecko build -c netplay.json -defsym "STG_EXIIndex=1" -batched
echo.
echo Building playback.json...
gecko build -c playback.json -defsym "STG_EXIIndex=1" -batched
echo.
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