summaryrefslogtreecommitdiff
path: root/PCbuild
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2019-10-16 10:27:17 -0700
committerGitHub <noreply@github.com>2019-10-16 10:27:17 -0700
commit7aebbd1182bc818324656b2fb764679faf51fdff (patch)
treede159bc32df8f1db5b5d4433efcac69639a3cde3 /PCbuild
parent392a13bb9346331b087bcd8bb1b37072c126abee (diff)
downloadcpython-git-7aebbd1182bc818324656b2fb764679faf51fdff.tar.gz
bpo-38492: Remove pythonw.exe dependency on the Microsoft C++ runtime (GH-16824)
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pythonw_uwp.vcxproj9
1 files changed, 9 insertions, 0 deletions
diff --git a/PCbuild/pythonw_uwp.vcxproj b/PCbuild/pythonw_uwp.vcxproj
index 79e105877f..e2c0171049 100644
--- a/PCbuild/pythonw_uwp.vcxproj
+++ b/PCbuild/pythonw_uwp.vcxproj
@@ -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>