diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-19 20:25:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-19 20:25:44 (GMT) |
commit | 389abd37ba50a327ae7388c6b016604cbd980e4b (patch) | |
tree | 515440f6abd0a0d3784c92968f680d6e0c607ca5 /PCbuild | |
parent | d7232f0e4646803f0bbaede6e1fa124156135512 (diff) | |
download | cpython-389abd37ba50a327ae7388c6b016604cbd980e4b.zip cpython-389abd37ba50a327ae7388c6b016604cbd980e4b.tar.gz cpython-389abd37ba50a327ae7388c6b016604cbd980e4b.tar.bz2 |
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 0f93a00..c38be2c 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"> |