Staging
v0.8.1
Revision fa608186b45918f8469cb72a53c016e9d88be821 authored by Łukasz Langa on 23 April 2013, 23:25:18 UTC, committed by Łukasz Langa on 23 April 2013, 23:25:18 UTC
1 parent 326edfd
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 python33_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python33.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top