2015-04-13 13:59:54 -03:00
|
|
|
@echo off
|
|
|
|
if not defined HOST_PYTHON (
|
2016-03-08 14:26:52 -04:00
|
|
|
if "%1" EQU "Debug" (
|
2015-04-13 14:11:40 -03:00
|
|
|
shift
|
2015-04-13 13:59:54 -03:00
|
|
|
set HOST_PYTHON=python_d.exe
|
2016-09-12 18:29:04 -03:00
|
|
|
if not exist python37_d.dll exit 1
|
2015-04-13 13:59:54 -03:00
|
|
|
) ELSE (
|
|
|
|
set HOST_PYTHON=python.exe
|
2016-09-12 18:29:04 -03:00
|
|
|
if not exist python37.dll exit 1
|
2015-04-13 13:59:54 -03:00
|
|
|
)
|
|
|
|
)
|
2016-03-08 14:26:52 -04:00
|
|
|
%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
|