2015-04-13 16:59:54 +00:00
|
|
|
@echo off
|
|
|
|
if not defined HOST_PYTHON (
|
2016-03-08 18:26:52 +00:00
|
|
|
if "%1" EQU "Debug" (
|
2015-04-13 17:11:40 +00:00
|
|
|
shift
|
2015-04-13 16:59:54 +00:00
|
|
|
set HOST_PYTHON=python_d.exe
|
2015-05-30 14:57:56 +00:00
|
|
|
if not exist python35_d.dll exit 1
|
2015-04-13 16:59:54 +00:00
|
|
|
) ELSE (
|
|
|
|
set HOST_PYTHON=python.exe
|
2015-05-30 14:57:56 +00:00
|
|
|
if not exist python35.dll exit 1
|
2015-04-13 16:59:54 +00:00
|
|
|
)
|
|
|
|
)
|
2016-03-08 18:26:52 +00:00
|
|
|
%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
|