1@ECHO OFF 2 3REM Copyright (C) 2009 Vladimir Prus 4REM Copyright 2019-2020 Rene Rivera 5REM 6REM Distributed under the Boost Software License, Version 1.0. 7REM (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) 8 9 10:b2_build 11ECHO Building the B2 engine.. 12pushd src\engine 13call .\build.bat %* 14@ECHO OFF 15popd 16if exist ".\src\engine\b2.exe" ( 17 copy .\src\engine\b2.exe . > nul 18 goto :b2_built) 19goto :b2_failure 20 21 22:b2_built 23ECHO. 24ECHO Building is done. To install, run: 25ECHO. 26ECHO .\b2 --prefix=DIR install 27ECHO. 28goto :end 29 30 31:b2_failure 32ECHO. 33ECHO Failed to build the B2 engine. 34ECHO. 35goto :end 36 37 38:end 39exit /b %ERRORLEVEL% 40