Staging
v0.8.1
Revision 45e124e26d43d4618d2686b5323c322aa25566b6 authored by Florent Xicluna on 22 January 2014, 00:16:25 UTC, committed by Florent Xicluna on 22 January 2014, 00:16:25 UTC
2 parent s f1e4fdc + 758fa5e
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 python34_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python34.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top