summaryrefslogtreecommitdiffstats
path: root/PC/bdist_wininst/resource.h
Commit message (Collapse)AuthorAgeFilesLines
* bpo-42802: Remove distutils bdist_wininst command (GH-24043)Victor Stinner2021-01-081-31/+0
| | | | | | | | | | The distutils bdist_wininst command deprecated in Python 3.8 has been removed. The distutils bidst_wheel command is now recommended to distribute binary packages on Windows. * Remove Lib/distutils/command/bdist_wininst.py * Remove PC/bdist_wininst/ project * Remove Lib/distutils/command/wininst-*.exe programs * Remove all references to bdist_wininst
* Removes bdist_wininst dependency on MFC.Steve Dower2014-12-151-15/+0
|
* Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵Steve Dower2014-11-221-5/+4
| | | | which will be used for the official 3.5 release.
* Add a warning so that it isn't forgotten to recreate the binaries ANDThomas Heller2004-07-141-0/+9
| | | | CHECK INTO CVS if these files are changed.
* Copied the sources from the distutils CVS repository.Thomas Heller2002-11-221-0/+38
Changed the MSVC project file to create the exe in the lib/distutils/command directory, bdist_wininst.py must still be changed to use it. Also changed to use the same zlib as the zlib module - this has the nice sideeffect that now the buggy 1.1.3 version is no longer used. Most of the source files now conform to PEP 7, except for the maximum line length. Windows api programming in 78 character lines =:(. README.txt is a new file, but still empty except for placeholders.