SDK/build-my.bat

8 lines
128 B
Batchfile
Raw Permalink Normal View History

2020-06-12 13:16:18 +02:00
@echo off
2020-06-28 21:07:46 +02:00
for /d %%f in ("%~dp0My\*") do (
if exist "%%f\build.bat" call "%%f\build.bat"
2020-06-12 13:16:18 +02:00
if errorlevel 1 goto exit
)
:exit