Staging
v0.5.1
Revision edc3cbaaba1493a00572ad46daaab14e341d738e authored by Georg Brandl on 04 October 2014, 12:16:59 UTC, committed by Georg Brandl on 04 October 2014, 12:16:59 UTC
1 parent e800a0e
Raw File
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python31_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python31.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top