SDK/build-examples.bat
2021-01-18 23:52:16 +03:00

13 lines
264 B
Batchfile

@echo off
for /d %%f in ("%~dp0Examples\Console\*") do (
if exist "%%f\build.bat" call "%%f\build.bat"
if errorlevel 1 goto exit
)
for /d %%f in ("%~dp0Examples\GUI\*") do (
if exist "%%f\build.bat" call "%%f\build.bat"
if errorlevel 1 goto exit
)
:exit