Files
DaSalba 9a308fb82c 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:50:09 +01:00

10 lines
144 B
Batchfile

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