summaryrefslogtreecommitdiff
path: root/tools/boost/build_boost.bat
diff options
context:
space:
mode:
Diffstat (limited to 'tools/boost/build_boost.bat')
-rw-r--r--tools/boost/build_boost.bat13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/boost/build_boost.bat b/tools/boost/build_boost.bat
new file mode 100644
index 0000000000..63efd03e48
--- /dev/null
+++ b/tools/boost/build_boost.bat
@@ -0,0 +1,13 @@
+@echo off
+set p1=%1
+set p2=%2
+if "%p1%" == "" (echo "please specify target platform by adding '86' or '64' parameter to command line!'"&&pause&&goto :EOF)
+if "%p2%" == "" (echo "please specify target msvc compiler by adding '10' for MSVC2010 or '11' for MSVC2012 to command line!'"&&pause&&goto :EOF)
+
+call bootstrap.bat
+
+if /i '%1' == '86' (
+ b2 --toolset=msvc-%2.0 runtime-link=shared threading=multi link=static architecture=x86 address-model=32
+) else if /i '%1' == '64' (
+ b2 --toolset=msvc-%2.0 runtime-link=shared threading=multi link=static architecture=x86 address-model=64 --stagedir=stage64
+) \ No newline at end of file