blob: 2975b8d7e2717eed080abacdc8afba0f2a85c9a4 [file] [log] [blame]
Zachary Ware4c9c8482015-04-13 11:59:54 -05001@echo off
2if not defined HOST_PYTHON (
3 if %1 EQU Debug (
4 set HOST_PYTHON=python_d.exe
5 if not exist python34_d.dll exit 1
6 ) ELSE (
7 set HOST_PYTHON=python.exe
8 if not exist python34.dll exit 1
9 )
10)
11%HOST_PYTHON% build_ssl.py %1 %2 %3
12