summaryrefslogtreecommitdiffstats
path: root/PCbuild/tcl.vcxproj
Commit message (Collapse)AuthorAgeFilesLines
* Fixes Tix build by correcting the directories used by Tcl and Tk. (#3391)Steve Dower2017-09-061-1/+1
|
* bpo-9566: Fix some Windows x64 compiler warnings (#2492)Segev Finer2017-07-261-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bpo-9566: Silence liblzma warnings * bpo-9566: Silence tcl warnings * bpo-9566: Silence tk warnings * bpo-9566: Silence tix warnings * bpo-9566: Fix some library warnings * bpo-9566: Fix msvcrtmodule.c warnings * bpo-9566: Silence _bz2 warnings * bpo-9566: Fixed some _ssl warnings * bpo-9566: Fix _msi warnings * bpo-9566: Silence _ctypes warnings * Revert "bpo-9566: Fixed some _ssl warnings" This reverts commit a639001c949ba53338a9ee047d2ec1efd2505e6f. * bpo-9566: Also consider NULL as a possible error in HANDLE_return_converter * bpo-9566: whitespace fixes
* [bpo-30916] Pre-build OpenSSL and Tcl/Tk for Windows (#2688)Steve Dower2017-07-171-23/+2
| | | Updates ssl and tkinter projects to use pre-built externals
* 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-1/+2
|
* Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵Steve Dower2014-11-221-134/+49
| | | | which will be used for the official 3.5 release.
* Issue #15968: Incorporated Tcl, Tk, and Tix builds into the Windows buildZachary Ware2014-03-221-0/+175
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