SDK/build-my.bat
2021-01-18 23:52:16 +03:00

8 lines
128 B
Batchfile

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