blob: 805d77a6dc76f51ae64e77832f8c49e0ee01c45f [file] [log] [blame]
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001@echo off
2if not defined HOST_PYTHON (
3 if %1 EQU Debug (
4 set HOST_PYTHON=python_d.exe
Georg Brandl08a90122012-09-29 09:34:13 +02005 if not exist python34_d.dll exit 1
Christian Heimes5b5e81c2007-12-31 16:14:33 +00006 ) ELSE (
7 set HOST_PYTHON=python.exe
Georg Brandl08a90122012-09-29 09:34:13 +02008 if not exist python34.dll exit 1
Christian Heimes5b5e81c2007-12-31 16:14:33 +00009 )
10)
11%HOST_PYTHON% build_ssl.py %1 %2 %3
12