SDK/build-examples.bat

13 lines
264 B
Batchfile
Raw Normal View History

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