We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392a13b commit 7aebbd1Copy full SHA for 7aebbd1
Misc/NEWS.d/next/Windows/2019-10-16-09-49-09.bpo-38492.Te1LxC.rst
@@ -0,0 +1 @@
1
+Remove ``pythonw.exe`` dependency on the Microsoft C++ runtime.
PCbuild/pythonw_uwp.vcxproj
@@ -65,6 +65,15 @@
65
<SubSystem>Windows</SubSystem>
66
</Link>
67
</ItemDefinitionGroup>
68
+ <ItemDefinitionGroup Condition="$(Configuration) != 'Debug'">
69
+ <ClCompile>
70
+ <RuntimeLibrary>Multithreaded</RuntimeLibrary>
71
+ </ClCompile>
72
+ <Link>
73
+ <AdditionalDependencies>ucrt.lib;%(AdditionalDependencies)</AdditionalDependencies>
74
+ <IgnoreSpecificDefaultLibraries>libucrt;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
75
+ </Link>
76
+ </ItemDefinitionGroup>
77
<ItemGroup>
78
<None Include="..\PC\pyconw.ico" />
79
</ItemGroup>
0 commit comments