SDK/build-examples.bat

8 lines
105 B
Batchfile
Raw Normal View History

2020-05-23 15:55:40 +02:00
@echo off
for /d %%f in (%~dp0Examples\*) do (
call %%f\build.bat
if errorlevel 1 goto exit
)
2020-05-23 15:55:40 +02:00
:exit