Support parallel 64- and 32-bit boost binaries (RIPD-1317):

* CMake and scons
* Update Visual Studio build docs
* Cache Appveyor PIP downloads for scons builds
* Rename the CMakeFuncs `find_` functions to `use_`
This commit is contained in:
Edward Hennis
2016-11-04 19:55:13 -04:00
committed by Nik Bougalis
parent b6ce0aa75a
commit fd901f8081
8 changed files with 96 additions and 52 deletions

View File

@@ -1,6 +1,6 @@
if "%build%" == "scons" (
rem Installing pip will install setuptools/easy_install.
python get-pip.py
python "%PIP_PATH%"
rem Pip has some problems installing scons on windows so we use easy install.
rem - easy_install scons
@@ -8,6 +8,6 @@ if "%build%" == "scons" (
easy_install https://pypi.python.org/packages/source/S/SCons/scons-2.5.0.tar.gz#md5=bda5530a70a41a7831d83c8b191c021e
rem Scons has problems with parallel builds on windows without pywin32.
easy_install pywin32-220.win-amd64-py2.7.exe
easy_install "%PYWIN32_PATH%"
rem (easy_install can do headless installs of .exe wizards)
)
)