diff options
author | Steve Dower <steve.dower@python.org> | 2019-08-13 17:34:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-13 17:34:07 (GMT) |
commit | b0dace3e979381426385c551b116d0f1434096ee (patch) | |
tree | 54f226e025fc7151a1bf8308b95a1f8b52771887 /PCbuild/python_uwp.vcxproj | |
parent | 99d208efed97e02d813e8166925b998bbd0d3993 (diff) | |
download | cpython-b0dace3e979381426385c551b116d0f1434096ee.zip cpython-b0dace3e979381426385c551b116d0f1434096ee.tar.gz cpython-b0dace3e979381426385c551b116d0f1434096ee.tar.bz2 |
bpo-37841: Remove python_uwp dependency on msvcp140.dll (GH-15253)
Diffstat (limited to 'PCbuild/python_uwp.vcxproj')
-rw-r--r-- | PCbuild/python_uwp.vcxproj | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/PCbuild/python_uwp.vcxproj b/PCbuild/python_uwp.vcxproj index af187dd..14e138c 100644 --- a/PCbuild/python_uwp.vcxproj +++ b/PCbuild/python_uwp.vcxproj @@ -65,6 +65,15 @@ <SubSystem>Console</SubSystem> </Link> </ItemDefinitionGroup> + <ItemDefinitionGroup Condition="$(Configuration) != 'Debug'"> + <ClCompile> + <RuntimeLibrary>Multithreaded</RuntimeLibrary> + </ClCompile> + <Link> + <AdditionalDependencies>ucrt.lib;%(AdditionalDependencies)</AdditionalDependencies> + <IgnoreSpecificDefaultLibraries>libucrt;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries> + </Link> + </ItemDefinitionGroup> <ItemGroup> <None Include="..\PC\pycon.ico" /> </ItemGroup> |