2015-04-13 13:59:54 -03:00
|
|
|
@echo off
|
|
|
|
if not defined HOST_PYTHON (
|
|
|
|
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
|
2015-05-28 19:30:03 -03:00
|
|
|
if not exist python36_d.dll exit 1
|
2015-04-13 13:59:54 -03:00
|
|
|
) ELSE (
|
|
|
|
set HOST_PYTHON=python.exe
|
2015-05-28 19:30:03 -03:00
|
|
|
if not exist python36.dll exit 1
|
2015-04-13 13:59:54 -03:00
|
|
|
)
|
|
|
|
)
|
2015-04-13 14:11:40 -03:00
|
|
|
%HOST_PYTHON% prepare_ssl.py %1
|