Browse Source
bpo-38492: Remove pythonw.exe dependency on the Microsoft C++ runtime (GH-16824)
pull/16826/head
Steve Dower
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
0 deletions
-
Misc/NEWS.d/next/Windows/2019-10-16-09-49-09.bpo-38492.Te1LxC.rst
-
PCbuild/pythonw_uwp.vcxproj
|
|
|
@ -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> |
|
|
|
|