Update to WinPython 2.7.13.1 and add new packages for WinPython 3.5.4 as well. (only used if explicitly installed)

This commit is contained in:
Jukka Jylänki
2018-02-26 19:29:27 +02:00
parent 14790ac40e
commit 4c8ea1b10b
3 changed files with 65 additions and 19 deletions

View File

@@ -1,4 +1,14 @@
:: Find python from an explicit location relative to the Emscripten SDK.
@IF EXIST "%~dp0python\2.7.13.1_64bit\python-2.7.13.amd64\python.exe" (
@SET EMSDK_PY="%~dp0python\2.7.13.1_64bit\python-2.7.13.amd64\python.exe"
@GOTO end
)
@IF EXIST "%~dp0python\2.7.13.1_32bit\python-2.7.13\python.exe" (
@SET EMSDK_PY="%~dp0python\2.7.13.1_32bit\python-2.7.13\python.exe"
@GOTO end
)
@IF EXIST "%~dp0python\2.7.5.3_64bit\python.exe" (
@SET EMSDK_PY="%~dp0python\2.7.5.3_64bit\python.exe"
@GOTO end