2013-09-05 12:23:53 +03:00
|
|
|
@echo off
|
2013-09-06 20:45:07 +03:00
|
|
|
|
|
|
|
|
:: Find python from an explicit location relative to the Emscripten SDK.
|
2013-09-06 21:16:33 +03:00
|
|
|
IF EXIST "%~dp0python\2.7.5.1_32bit\python.exe" (
|
2013-09-10 17:18:04 +03:00
|
|
|
call "%~dp0python\2.7.5.1_32bit\python" "%~dp0\emsdk" %*
|
2013-09-06 20:45:07 +03:00
|
|
|
GOTO end
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
:: As last resort, access from PATH.
|
2013-09-10 17:18:04 +03:00
|
|
|
call python "%~dp0\emsdk" %*
|
2013-09-06 20:45:07 +03:00
|
|
|
GOTO end
|
|
|
|
|
|
|
|
|
|
:end
|
2013-09-10 17:18:04 +03:00
|
|
|
@echo on
|