cpython/PCbuild
Guido van Rossum ef6ceb62bd Same patch (also by Mark Hammond) for this straggler project file as
for the other projects, to move the x86 project names back to what
they were.
2000-02-07 15:29:43 +00:00
..
.cvsignore More files to be ignored. 1998-08-08 20:07:20 +00:00
_tkinter.dsp Mark Hammond renames the x86 projects back to what they were named 2000-02-03 17:19:35 +00:00
bsddb.dsp Same patch (also by Mark Hammond) for this straggler project file as 2000-02-07 15:29:43 +00:00
parser.dsp Mark Hammond renames the x86 projects back to what they were named 2000-02-03 17:19:35 +00:00
pcbuild.dsw Changes by Trent Mick (of ActiveState) and Dale Nagata to support 2000-01-20 21:31:41 +00:00
python.dsp Mark Hammond renames the x86 projects back to what they were named 2000-02-03 17:19:35 +00:00
python15.dsp Mark Hammond renames the x86 projects back to what they were named 2000-02-03 17:19:35 +00:00
python15.wse Bump version to 1.5.2 (final) 1999-04-13 15:44:49 +00:00
pythonw.dsp Mark Hammond renames the x86 projects back to what they were named 2000-02-03 17:19:35 +00:00
readme.txt Added hints about building your own DLL. 1998-07-07 22:35:03 +00:00
zlib.dsp Mark Hammond renames the x86 projects back to what they were named 2000-02-03 17:19:35 +00:00

readme.txt

Building Python using VC++ 5.x
------------------------------

This directory is used to build Python for Win32 platforms,
e.g. Windows 95, 98 and NT.  It requires Microsoft Visual C++ 5.x.
(For other Windows platforms and compilers, see ../PC/readme.txt.)

Unlike previous versions, there's no longer a need to copy the project
files from the PC/vc5x subdirectory to the PCbuild directory -- they
come in PCbuild.

All you need to do is open the workspace "pcbuild.dsw" in MSVC++,
select the Debug or Release setting (using Set Active
Configuration... in the Build menu), and build the projects.

The proper order to build is

1) python15 (this builds python15.dll and python15.lib)
2) python   (this builds python.exe)
3) the other subprojects

Some subprojects require that you have distributions of other
software: Tcl/Tk, bsddb and zlib.  If you don't have these, you can't
build the corresponding extensions.  If you do have them, you may have
to change the project settings to point to the right include files,
libraries etc.

When using the Debug setting, the output files have a _d added to
their name: python15_d.dll, python_d.exe, parser_d.pyd, and so on.

If you want to create your own extension module DLL, there's an
example with easy-to-follow instructions in ../PC/example/; read the
file readme.txt there first.

Pointers:
Tcl/Tk	http://sunscript.sun.com/ or http://www.scriptics.com
zlib	http://www.winimage.com/zLibDll
bsddb	Sam Rushing's web/ftp site