Files
core/Common/3dParty/make.bat
Oleg Korshul 341bcfa74e no message
2016-07-20 17:48:48 +03:00

17 lines
217 B
Batchfile

SET SCRIPTPATH=%~dp0
CD /D %~dp0
FOR /f "tokens=*" %%i in ('DIR /a:d /b *') DO (
CD /D %~dp0
ECHO %%i
if exist %%i/fetch.bat (
call %%i/fetch.bat
)
if exist %%i/build.bat (
call %%i/build.bat
)
)