wxWidgets/wxPython/distrib
Robin Dunn 09740c31b9 Mode distrib scripts and such
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16846 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-28 20:02:20 +00:00
..
mac Some distrib updates for wxPythonOSX 2002-08-27 20:45:57 +00:00
.cvsignore merged 2.2 branch 2000-07-15 19:51:35 +00:00
.rpmrc merged 2.2 branch 2000-07-15 19:51:35 +00:00
autobuild.py Updated distribution stuff 2000-12-11 04:00:06 +00:00
make_installer.py Installer updates 2002-08-28 17:49:58 +00:00
makedbg.bat Merged wxPython 2.2.2 over to the main branch 2000-10-30 21:08:42 +00:00
makedemo Mode distrib scripts and such 2002-08-28 20:02:20 +00:00
makedev.bat Mode distrib scripts and such 2002-08-28 20:02:20 +00:00
makedocs.bat Mode distrib scripts and such 2002-08-28 20:02:20 +00:00
makerpm Some build/distrib tweaks 2002-08-25 05:59:23 +00:00
maketgz merged 2.2 branch 2000-07-15 19:51:35 +00:00
maketools More distrib updates 2001-12-11 04:55:09 +00:00
makexferzip merged 2.2 branch 2000-07-15 19:51:35 +00:00
makexferzip.bat merged 2.2 branch 2000-07-15 19:51:35 +00:00
README.dbg.txt Merged wxPython 2.2.2 over to the main branch 2000-10-30 21:08:42 +00:00
README.devel.txt Mode distrib scripts and such 2002-08-28 20:02:20 +00:00
wise.aut merged 2.2 branch 2000-07-15 19:51:35 +00:00
wxPython.bmp merged 2.2 branch 2000-07-15 19:51:35 +00:00
wxPython.rsp Merged wxPython 2.2.2 over to the main branch 2000-10-30 21:08:42 +00:00
wxPython.wse Copied/merged from the 2.2 branch. 2001-02-16 08:19:50 +00:00
wxPython.WSM Copied/merged from the 2.2 branch. 2001-02-16 08:19:50 +00:00
wxPythonFull.spec.in Change how the tool scripts are installed 2002-08-28 04:31:25 +00:00
zipall.bat Copied/merged from the 2.2 branch. 2001-02-16 08:19:50 +00:00
zipit.bat Various little tweaks 2002-07-20 00:14:28 +00:00

This tarball contains all the files needed (I hope!) to allow you to
write win32 programs or Python extension modules that link to the same
wxWindows DLL that wxPython does.  Files for both the normal (ANSI)
and unicode builds are included.

You'll need to add the following directories to your Include path (the
/I flag for MSVC):

	wxPython-[version]\lib\mswdllh   [for ANSI builds]
	wxPython-[version]\lib\mswdlluh  [for Unicode builds]
	wxPython-[version]\include

And also you should link with one of the wxmsw*.lib files in the lib
dir, use the one with the 'u' in the name for the Unicode build and
the one without for the ANSI build.

I've also included some makefiles in the src dir to give you an idea
of what compiler and linker flags are required.  You can also get this
info from wxPython's setup.py script.

I'm sure I've forgotten something, so when you discover what it is
please let me know.  Also, if anyone feels like turning this text into
a more detailed HOW-TO please send your text to me.


Robin