summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-10-16 17:46:29 (GMT)
committerGitHub <noreply@github.com>2019-10-16 17:46:29 (GMT)
commit7773d391f8261a97af502ecfa74a2a588ee05f36 (patch)
tree83098175096a0c0370ae78cc5649a68685682f13 /PCbuild
parentafbcd9f26d1bf5390f56f18c9afbf753e48f230d (diff)
downloadcpython-7773d391f8261a97af502ecfa74a2a588ee05f36.zip
cpython-7773d391f8261a97af502ecfa74a2a588ee05f36.tar.gz
cpython-7773d391f8261a97af502ecfa74a2a588ee05f36.tar.bz2
bpo-38492: Remove pythonw.exe dependency on the Microsoft C++ runtime (GH-16824)
(cherry picked from commit 7aebbd1182bc818324656b2fb764679faf51fdff) Co-authored-by: Steve Dower <steve.dower@python.org>
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 79e1058..e2c0171 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>