Files
gbdk-2020/gbdk-lib/examples/compile.bat
DaSalba 5d78849de0 Create compile.bat
Add a Windows batch file to compile all examples in one go, just as you can with the Linux Makefile.
2022-02-15 20:53:13 +01:00

10 lines
121 B
Batchfile

@echo off
REM Automatically build all GBDK-2020 examples.
for /d %%i in (.\*) do (
pushd "%%i"
.\compile.bat
popd
)