SDK/build-tools.bat

8 lines
131 B
Batchfile

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