SDK/build-examples.bat

8 lines
105 B
Batchfile

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