bpo-38492: Remove pythonw.exe dependency on the Microsoft C++ runtime (GH-16824)
This commit is contained in:
parent
392a13bb93
commit
7aebbd1182
|
@ -0,0 +1 @@
|
|||
Remove ``pythonw.exe`` dependency on the Microsoft C++ runtime.
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue