SDK/build-examples.bat

13 lines
206 B
Batchfile
Raw Normal View History

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