summaryrefslogtreecommitdiffstats
path: root/PCbuild/tcltk.props
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2022-02-28 12:06:43 (GMT)
committerGitHub <noreply@github.com>2022-02-28 12:06:43 (GMT)
commitda7d99a4de72aac8d436cecedf16ab2676f9b785 (patch)
tree4cd872e18c9b1053147d9e50bed6cbe8cfe6a1b6 /PCbuild/tcltk.props
parent424ecab494d538650ba34937cdd710094ccb2275 (diff)
downloadcpython-da7d99a4de72aac8d436cecedf16ab2676f9b785.zip
cpython-da7d99a4de72aac8d436cecedf16ab2676f9b785.tar.gz
cpython-da7d99a4de72aac8d436cecedf16ab2676f9b785.tar.bz2
bpo-46567: Add Tcl/Tk build for Windows ARM64 (GH-31574)
Diffstat (limited to 'PCbuild/tcltk.props')
-rw-r--r--PCbuild/tcltk.props5
1 files changed, 4 insertions, 1 deletions
diff --git a/PCbuild/tcltk.props b/PCbuild/tcltk.props
index 72cffc3..7fd43e8 100644
--- a/PCbuild/tcltk.props
+++ b/PCbuild/tcltk.props
@@ -5,7 +5,7 @@
<TclMajorVersion>8</TclMajorVersion>
<TclMinorVersion>6</TclMinorVersion>
<TclPatchLevel>12</TclPatchLevel>
- <TclRevision>0</TclRevision>
+ <TclRevision>1</TclRevision>
<TkMajorVersion>$(TclMajorVersion)</TkMajorVersion>
<TkMinorVersion>$(TclMinorVersion)</TkMinorVersion>
<TkPatchLevel>$(TclPatchLevel)</TkPatchLevel>
@@ -18,6 +18,9 @@
<tkDir>$(ExternalsDir)tk-$(TkMajorVersion).$(TkMinorVersion).$(TkPatchLevel).$(TkRevision)\</tkDir>
<tixDir>$(ExternalsDir)tix-$(TixMajorVersion).$(TixMinorVersion).$(TixPatchLevel).$(TixRevision)\</tixDir>
<tcltkDir>$(ExternalsDir)tcltk-$(TclMajorVersion).$(TclMinorVersion).$(TclPatchLevel).$(TclRevision)\$(ArchName)\</tcltkDir>
+ <tclWin32Exe Condition="$(Platform) == 'Win32'">$(tcltkDir)\bin\tclsh$(TclMajorVersion)$(TclMinorVersion)t.exe</tclWin32Exe>
+ <tclWin32Exe Condition="$(Platform) != 'Win32'">$(tcltkDir)\..\win32\bin\tclsh$(TclMajorVersion)$(TclMinorVersion)t.exe</tclWin32Exe>
+
<!--<TclDebugExt Condition="'$(Configuration)' == 'Debug'">g</TclDebugExt>-->
<tclDLLName>tcl$(TclMajorVersion)$(TclMinorVersion)t$(TclDebugExt).dll</tclDLLName>
<tclLibName>tcl$(TclMajorVersion)$(TclMinorVersion)t$(TclDebugExt).lib</tclLibName>