diff options
author | Wulian <1055917385@qq.com> | 2024-09-23 23:09:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-23 23:09:22 (GMT) |
commit | 27a62e7371f062a80704f6bf4d6e8f06568d37aa (patch) | |
tree | 66f3a0afc3af62bf1569f74a70d0aaf9f38c44a0 /PCbuild/python.props | |
parent | 8a2baedc4bcb606da937e4e066b4b3a18961cace (diff) | |
download | cpython-27a62e7371f062a80704f6bf4d6e8f06568d37aa.zip cpython-27a62e7371f062a80704f6bf4d6e8f06568d37aa.tar.gz cpython-27a62e7371f062a80704f6bf4d6e8f06568d37aa.tar.bz2 |
gh-124102: Update internal PCbuild docs to accurately list build dependencies (GH-124103)
Diffstat (limited to 'PCbuild/python.props')
-rw-r--r-- | PCbuild/python.props | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/PCbuild/python.props b/PCbuild/python.props index c8ecdb4..6e90178 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -6,7 +6,7 @@ <Configuration Condition="'$(Configuration)' == ''">Release</Configuration> <!-- Use the latest available version of Visual Studio to build. To override - this and build with an earlier version, pass "/p:PlatformToolset=v100" + this and build with an earlier version, pass "/p:PlatformToolset=v141" (for example) when building. We set BasePlatformToolset for ICC's benefit, it's otherwise ignored. @@ -14,10 +14,6 @@ <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VisualStudioVersion)' == '17.0'">v143</BasePlatformToolset> <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VisualStudioVersion)' == '16.0'">v142</BasePlatformToolset> <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and ('$(MSBuildToolsVersion)' == '15.0' or '$(VisualStudioVersion)' == '15.0')">v141</BasePlatformToolset> - <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath14)' != ''">v140</BasePlatformToolset> - <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath12)' != ''">v120</BasePlatformToolset> - <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath11)' != ''">v110</BasePlatformToolset> - <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath10)' != ''">v100</BasePlatformToolset> <PlatformToolset Condition="'$(PlatformToolset)' == ''">$(BasePlatformToolset)</PlatformToolset> <ICCBuild>false</ICCBuild> |