SDK/build-my.bat

8 lines
99 B
Batchfile
Raw Normal View History

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