Files
core/Common/3dParty/v8/fetch.bat
2016-10-18 18:54:41 +03:00

20 lines
475 B
Batchfile

SET SCRIPTPATH=%~dp0
CD /D %~dp0
if exist "depot_tools" (
echo "depot_tools already fetched"
) else (
call git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
call powershell -File .\fix-depot_tools.ps1
)
SET PATH=%SCRIPTPATH%depot_tools;%SCRIPTPATH%depot_tools\python276_bin;%PATH%
SET DEPOT_TOOLS_WIN_TOOLCHAIN=0
SET GYP_MSVS_VERSION=2013
if not exist "%SCRIPTPATH%v8" (
call .\depot_tools\fetch v8
)
call depot_tools\gclient sync -r 4.10.253