mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 04:04:52 +08:00
27 lines
471 B
Batchfile
27 lines
471 B
Batchfile
![]() |
::
|
||
|
:: Copy to boost root dir
|
||
|
::
|
||
|
|
||
|
call :ExecBjam 32
|
||
|
call :ExecBjam 64
|
||
|
pause
|
||
|
goto :EOF
|
||
|
|
||
|
|
||
|
:ExecBjam
|
||
|
set arch=%1
|
||
|
set stagedir=stage
|
||
|
if "%arch%"=="64" set stagedir=stage64
|
||
|
|
||
|
bjam.exe ^
|
||
|
-j 4 ^
|
||
|
--toolset=msvc-9.0 ^
|
||
|
release debug ^
|
||
|
threading=multi link=static runtime-link=shared ^
|
||
|
address-model=%arch% ^
|
||
|
--with-python --with-date_time --with-regex --with-thread ^
|
||
|
python=2.6 ^
|
||
|
--stagedir=%stagedir% ^
|
||
|
stage
|
||
|
goto :EOF
|