]> git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/doodle/buildapp.py
b25012bef02ee2e4b478239df4b0863a7b8b5a7b
[wxWidgets.git] / wxPython / samples / doodle / buildapp.py
1 # This will build an Application Bundle of the superdoodle sample
2 # application for OSX. Run like this:
3 #
4 # pythonw buildapp.py build
5 #
6
7 import os, glob
8 from bundlebuilder import buildapp
9
10
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]*"
14
15
16 buildapp(
17 name = "SuperDoodle",
18 mainprogram = "superdoodle.py",
19
20 # This tells bundlebuilder to include Python and everything else
21 # that it needs to run the app
22 standalone = 1,
23
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),
27
28 # Some modules will not be found automatically, so we ned to help
29 includeModules = ["cStringIO"],
30
31 verbosity = 1
32 )
33