summaryrefslogtreecommitdiff
path: root/PCbuild/tcltk.props
Commit message (Collapse)AuthorAgeFilesLines
* Implement Windows release builds in Azure Pipelines (GH-14065)Steve Dower2019-06-141-3/+18
|
* bpo-35402: Update Windows build to use Tcl and Tk 8.6.9 (GH-11146)Steve Dower2018-12-141-1/+1
|
* bpo-32901: Update Tcl and Tk versions to 8.6.8 (GH-5823)Steve Dower2018-02-231-1/+1
|
* Fixes Tix build by correcting the directories used by Tcl and Tk. (#3391)Steve Dower2017-09-061-0/+1
|
* [bpo-30916] Pre-build OpenSSL and Tcl/Tk for Windows (#2688)Steve Dower2017-07-171-3/+2
| | | Updates ssl and tkinter projects to use pre-built externals
* Issue #27647: Update Windows build to Tcl/Tk 8.6.6Zachary Ware2016-07-281-3/+3
|
* Issue #26079: Fixing the build output folder for tix-8.4.3.6. Patch by ↵Steve Dower2016-03-121-4/+4
| | | | Bjoern Thiel.
* Issue #24847: Removes vcruntime140.dll dependency from Tcl/Tk.Steve Dower2015-08-191-2/+2
|
* Update Tcl/Tk to 8.6.4.Zachary Ware2015-04-141-1/+1
| | | | The new version of Tcl/Tk plays nice(r) with VS2015 CTP 6+.
* Update Tcl/Tk to 8.6.3Zachary Ware2014-12-151-3/+3
| | | | | | | | | | - new file dialogs on Vista+ - tclWinTime.c was cleaned up a bit, and no longer uses 'timezone' (which is now _timezone in VS2015, so we get to avoid patching that file). - rules.vc is patched in both Tcl and Tk sources to allow building with VS2015
* Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵Steve Dower2014-11-221-26/+41
| | | | which will be used for the official 3.5 release.
* Issue #15968: Incorporated Tcl, Tk, and Tix builds into the Windows buildZachary Ware2014-03-211-0/+30
solution. Currently, Tix is not built in Debug configuration. This change also: - simplifies some Tcl/Tk-related msbuild properties for _tkinter - copies the Tcl and Tk DLLs into the build output directory, meaning they will always be available after a build without having to copy them manually or change PATH - removes PCbuild/build_tkinter.py: the solution does the build without needing to invoke Python (so Tcl/Tk/Tix can be built in parallel with the rest of the build using the `/m` msbuild command line switch) - removes an outdated README concerning building Tcl/Tk on AMD64