Add Visual C x86 autobuild.

This commit is contained in:
David Brown 2016-12-22 14:35:11 +00:00
parent 572587ec56
commit da14bc6398
3 changed files with 34 additions and 14 deletions

View file

@ -68,9 +68,21 @@ goto :eof
:full
call :clean || exit /b
echo.
echo.--- Compiler build started ---
echo.
call :compiler || exit /b
echo.
echo.--- Compiler build successfull ---
echo.
call :browsercmd || exit /b
echo.
echo.--- Library build started ---
echo.
call :library || exit /b
echo.
echo.--- Library build successfull ---
echo.
call :makeinstalldir || exit /b
goto :eof
@ -148,6 +160,7 @@ goto :eof
:clean
echo.--- Cleaning branch ... %OS% %COMPILER% %DATAMODEL% ---
rd /s /q %BUILDDIR% 2>nul
del /q %OBECOMP% 2>nul
goto :eof