blob: 04eab5b764e1b9212dbf6fc236e6ddc4e42df44c [file] [log] [blame]
Christian Heimes57dddfb2008-01-02 18:30:52 +00001@echo off
2if not defined HOST_PYTHON (
3 if %1 EQU Debug (
4 set HOST_PYTHON=python_d.exe
5 if not exist python30_d.dll exit 1
6 ) ELSE (
7 set HOST_PYTHON=python.exe
8 if not exist python30.dll exit 1
9 )
10)
11%HOST_PYTHON% build_ssl.py %1 %2 %3
12