diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-06-08 19:28:13 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-06-08 19:28:13 (GMT) |
commit | 9789185e36be41ee82024ce462f29901a7cc1a76 (patch) | |
tree | 4f6e5bbb549b399741aff718f4184ed883749bdd /Tools/buildbot/external.bat | |
parent | c6a66ccb067778a9ade6574f979f80155974cf38 (diff) | |
download | cpython-9789185e36be41ee82024ce462f29901a7cc1a76.zip cpython-9789185e36be41ee82024ce462f29901a7cc1a76.tar.gz cpython-9789185e36be41ee82024ce462f29901a7cc1a76.tar.bz2 |
Issue #21683: Add Tix build to the Windows buildbot scripts.
Diffstat (limited to 'Tools/buildbot/external.bat')
-rw-r--r-- | Tools/buildbot/external.bat | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tools/buildbot/external.bat b/Tools/buildbot/external.bat index 2365160..3877d8d 100644 --- a/Tools/buildbot/external.bat +++ b/Tools/buildbot/external.bat @@ -19,3 +19,11 @@ if not exist tcltk\bin\tk86tg.dll ( nmake -f makefile.vc OPTS=symbols INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.6.1.0 install-binaries install-libraries cd ..\.. ) + +if not exist tcltk\lib\tix8.4.3\tix84g.dll ( + cd tix-8.4.3.4\win + nmake -f python.mak DEBUG=1 MACHINE=IX86 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk clean + nmake -f python.mak DEBUG=1 MACHINE=IX86 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk all + nmake -f python.mak DEBUG=1 MACHINE=IX86 TCL_DIR=..\..\tcl-8.6.1.0 TK_DIR=..\..\tk-8.6.1.0 INSTALL_DIR=..\..\tcltk install + cd ..\.. +) |