diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-08-19 15:39:12 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-08-19 15:39:12 (GMT) |
commit | ab2a34abb7ffe959fc2a221d77943b51f82f8d65 (patch) | |
tree | ee6dd48624462d1f21accc25d289e24ebef690df /PCbuild/tcl.vcxproj | |
parent | 6707906ea5e0df1132d3cd0c77707ccc19948341 (diff) | |
download | cpython-ab2a34abb7ffe959fc2a221d77943b51f82f8d65.zip cpython-ab2a34abb7ffe959fc2a221d77943b51f82f8d65.tar.gz cpython-ab2a34abb7ffe959fc2a221d77943b51f82f8d65.tar.bz2 |
Issue #24847: Removes vcruntime140.dll dependency from Tcl/Tk.
Diffstat (limited to 'PCbuild/tcl.vcxproj')
-rw-r--r-- | PCbuild/tcl.vcxproj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/PCbuild/tcl.vcxproj b/PCbuild/tcl.vcxproj index 8f2544a..e9287c7 100644 --- a/PCbuild/tcl.vcxproj +++ b/PCbuild/tcl.vcxproj @@ -61,7 +61,8 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <PropertyGroup> - <TclOpts Condition="$(Configuration) == 'Debug'">symbols</TclOpts> + <TclOpts>ucrt</TclOpts> + <TclOpts Condition="$(Configuration) == 'Debug'">symbols,ucrt</TclOpts> <TclDirs>INSTALLDIR="$(OutDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TclDirs> <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags> <NMakeBuildCommandLine>setlocal |