]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/doodle/buildapp.py
b25012bef02ee2e4b478239df4b0863a7b8b5a7b
1 # This will build an Application Bundle of the superdoodle sample
2 # application for OSX. Run like this:
4 # pythonw buildapp.py build
8 from bundlebuilder
import buildapp
11 # See below. Set to wherever your wxMac dynlibs are installed.
12 # (Probably /usr/local/wxPython-2.5.2.?/lib)
13 wxLibs
= "/opt/wx/2.5/lib/libwx*2.5.2.[dr]*"
18 mainprogram
= "superdoodle.py",
20 # This tells bundlebuilder to include Python and everything else
21 # that it needs to run the app
24 # Bunndlebuilder isn't yet able to find the shared libs that may be
25 # needed by extension modules, so we have to help it out.
26 libs
= glob
.glob(wxLibs
),
28 # Some modules will not be found automatically, so we ned to help
29 includeModules
= ["cStringIO"],