Commit 7aebbd11 authored by Steve Dower's avatar Steve Dower Committed by GitHub

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

parent 392a13bb
Remove ``pythonw.exe`` dependency on the Microsoft C++ runtime.
...@@ -65,6 +65,15 @@ ...@@ -65,6 +65,15 @@
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>
</Link> </Link>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemDefinitionGroup Condition="$(Configuration) != 'Debug'">
<ClCompile>
<RuntimeLibrary>Multithreaded</RuntimeLibrary>
</ClCompile>
<Link>
<AdditionalDependencies>ucrt.lib;%(AdditionalDependencies)</AdditionalDependencies>
<IgnoreSpecificDefaultLibraries>libucrt;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
</Link>
</ItemDefinitionGroup>
<ItemGroup> <ItemGroup>
<None Include="..\PC\pyconw.ico" /> <None Include="..\PC\pyconw.ico" />
</ItemGroup> </ItemGroup>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment