2013-09-06 20:45:07 +03:00
|
|
|
:: Find python from an explicit location relative to the Emscripten SDK.
|
2013-09-11 21:30:21 +03:00
|
|
|
@IF EXIST "%~dp0python\2.7.5.1_32bit\python.exe" (
|
|
|
|
|
@call "%~dp0python\2.7.5.1_32bit\python" "%~dp0\emsdk" %*
|
|
|
|
|
@GOTO end
|
2013-09-06 20:45:07 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
:: As last resort, access from PATH.
|
2013-09-11 21:30:21 +03:00
|
|
|
@call python "%~dp0\emsdk" %*
|
|
|
|
|
@GOTO end
|
2013-09-06 20:45:07 +03:00
|
|
|
|
|
|
|
|
:end
|