File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <Project ToolsVersion =" 4.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
+ <ImportGroup Label =" PropertySheets" />
4
+ <PropertyGroup Label =" UserMacros" >
5
+ <PropSheetPath >$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))</PropSheetPath >
6
+ </PropertyGroup >
7
+ <PropertyGroup />
8
+ <ItemDefinitionGroup >
9
+ <ClCompile >
10
+ <AdditionalIncludeDirectories >$(PropSheetPath)boost_1_62_0\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories >
11
+ </ClCompile >
12
+ <Link >
13
+ <AdditionalLibraryDirectories >$(PropSheetPath)boost_1_62_0\stage\$(Platform)\lib\</AdditionalLibraryDirectories >
14
+ </Link >
15
+ </ItemDefinitionGroup >
16
+ <ItemGroup />
17
+ </Project >
Original file line number Diff line number Diff line change
1
+ call " %VS140COMNTOOLS% ..\..\VC\vcvarsall.bat" x86
2
+
3
+ set cores = %NUMBER_OF_PROCESSORS%
4
+ echo Building boost with %cores% cores
5
+
6
+ cd boost_1_62_0
7
+ call bootstrap.bat
8
+
9
+ rem Most libraries can be static libs
10
+ b2 -j%cores% toolset=msvc-14.0 address-model=64 architecture=x86 link=static threading=multi runtime-link=shared --build-type=minimal stage --stagedir=stage/x64
11
+ b2 -j%cores% toolset=msvc-14.0 address-model=32 architecture=x86 link=static threading=multi runtime-link=shared --build-type=minimal stage --stagedir=stage/win32
12
+
13
+ pause
You can’t perform that action at this time.
0 commit comments