MSVC
[novacoin.git] / MSVC / build-helpers / buildboost.bat
1 @ECHO ON
2 cd C:\MyProjects\Deps\boost_1_55_0
3 if %errorlevel% NEQ 0 goto ERRORCLEANUP
4 md stage\lib\x64
5 call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" x86_amd64
6 call bootstrap.bat
7 bjam --toolset=msvc-11.0 address-model=64 -a link=static runtime-link=static cxxflags="-Zc:wchar_t- 
8 move /Y stage\lib\* stage\lib\x64\
9 call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\vcvars32.bat"
10 call bootstrap.bat
11 bjam --toolset=msvc-11.0 -a link=static runtime-link=static cxxflags="-Zc:wchar_t-  
12 echo All finished!
13 pause
14 goto EOF
15 :ERRORCLEANUP
16 echo Something went wrong, please check the directories in this batch file!
17 pause
18 :EOF
19