bpo-38492: Remove pythonw.exe dependency on the Microsoft C++ runtime (GH-16824)

This commit is contained in:
Steve Dower 2019-10-16 10:27:17 -07:00 committed by GitHub
parent 392a13bb93
commit 7aebbd1182
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1 @@
Remove ``pythonw.exe`` dependency on the Microsoft C++ runtime.

View file

@ -65,6 +65,15 @@
<SubSystem>Windows</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\pyconw.ico" />
</ItemGroup>