mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
* CMake and scons * Update Visual Studio build docs * Cache Appveyor PIP downloads for scons builds * Rename the CMakeFuncs `find_` functions to `use_`
14 lines
513 B
Batchfile
14 lines
513 B
Batchfile
if "%build%" == "scons" (
|
|
rem Installing pip will install setuptools/easy_install.
|
|
python "%PIP_PATH%"
|
|
|
|
rem Pip has some problems installing scons on windows so we use easy install.
|
|
rem - easy_install scons
|
|
rem Workaround
|
|
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_PATH%"
|
|
rem (easy_install can do headless installs of .exe wizards)
|
|
)
|