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
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>