bpo-38492: Remove pythonw.exe dependency on the Microsoft C++ runtime (GH-16824)
(cherry picked from commit 7aebbd1182
)
Co-authored-by: Steve Dower <steve.dower@python.org>
This commit is contained in:
parent
afbcd9f26d
commit
7773d391f8
|
@ -0,0 +1 @@
|
||||||
|
Remove ``pythonw.exe`` dependency on the Microsoft C++ runtime.
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue