瀏覽代碼

Fix Python version parsing.

tags/v0.4.3
Ben Kurtovic 8 年之前
父節點
當前提交
4c89e51fab
共有 1 個文件被更改,包括 1 次插入7 次删除
  1. +1
    -7
      scripts/win_wrapper.cmd

+ 1
- 7
scripts/win_wrapper.cmd 查看文件

@@ -23,14 +23,8 @@ SET COMMAND_TO_RUN=%*
SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows
SET WIN_WDK=c:\Program Files (x86)\Windows Kits\10\Include\wdf

:: Extract the major and minor versions, and allow for the minor version to be
:: more than 9. This requires the version number to have two dots in it.
SET MAJOR_PYTHON_VERSION=%PYTHON_VERSION:~0,1%
IF "%PYTHON_VERSION:~3,1%" == "." (
SET MINOR_PYTHON_VERSION=%PYTHON_VERSION:~2,1%
) ELSE (
SET MINOR_PYTHON_VERSION=%PYTHON_VERSION:~2,2%
)
SET MINOR_PYTHON_VERSION=%PYTHON_VERSION:~2%

:: Based on the Python version, determine what SDK version to use, and whether
:: to set the SDK for 64-bit.


Loading…
取消
儲存