diff options
author | 2019-06-19 13:25:44 -0700 | |
---|---|---|
committer | 2019-06-19 13:25:44 -0700 | |
commit | 389abd37ba50a327ae7388c6b016604cbd980e4b (patch) | |
tree | 515440f6abd0a0d3784c92968f680d6e0c607ca5 /PCbuild | |
parent | bpo-37331: Clarify format of socket handler messages in the documentation. (G... (diff) | |
download | cpython-389abd37ba50a327ae7388c6b016604cbd980e4b.tar.gz cpython-389abd37ba50a327ae7388c6b016604cbd980e4b.tar.bz2 cpython-389abd37ba50a327ae7388c6b016604cbd980e4b.zip |
bpo-37333: Ensure IncludeTkinter has a value (GH-14240)
(cherry picked from commit 12f1c726d8328e5e096c35c36901f6d19bc942d3)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/python.props | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/PCbuild/python.props b/PCbuild/python.props index 0f93a003836..c38be2c7418 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -81,6 +81,9 @@ <!-- Full path of the resulting python.exe binary --> <PythonExe Condition="'$(PythonExe)' == ''">$(BuildPath)python$(PyDebugExt).exe</PythonExe> + + <!-- Include Tkinter by default --> + <IncludeTkinter Condition="'$(IncludeTkinter)' == ''">true</IncludeTkinter> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM'" Label="ArmConfiguration"> |