summaryrefslogtreecommitdiffstats
path: root/PCbuild/tk.vcxproj
Commit message (Collapse)AuthorAgeFilesLines
* Fix building tcl/tk with only the VC build tools installed.Steve Dower2016-07-151-0/+2
|
* Issue #25027: Reverts partial-static build options and adds vcruntime140.dll ↵Steve Dower2015-09-091-2/+2
| | | | to Windows installation.
* Issue #24847: Removes vcruntime140.dll dependency from Tcl/Tk.Steve Dower2015-08-191-2/+2
|
* Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵Steve Dower2014-11-221-131/+48
| | | | which will be used for the official 3.5 release.
* Issue #21665: Don't use 'OPTS=noxp' when compiling Tk.Zachary Ware2014-06-051-2/+2
| | | | | That option had been for Win2k compatibility (which was dropped with Python 3.3) and makes default ttk ugly on post-Win2k systems.
* Issue #15968: Incorporated Tcl, Tk, and Tix builds into the Windows buildZachary Ware2014-03-221-0/+178
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