diff options
Diffstat (limited to 'PCbuild/prepare_ssl.bat')
-rw-r--r-- | PCbuild/prepare_ssl.bat | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/PCbuild/prepare_ssl.bat b/PCbuild/prepare_ssl.bat new file mode 100644 index 0000000..c08a9f3 --- /dev/null +++ b/PCbuild/prepare_ssl.bat @@ -0,0 +1,12 @@ +@echo off
+if not defined HOST_PYTHON (
+ if %1 EQU Debug (
+ shift
+ set HOST_PYTHON=python_d.exe
+ if not exist python35_d.dll exit 1
+ ) ELSE (
+ set HOST_PYTHON=python.exe
+ if not exist python35.dll exit 1
+ )
+)
+%HOST_PYTHON% prepare_ssl.py %1
|