Re: [Pyobjc-dev] QuickTimeViewer demo using PyObjC!
Brought to you by:
ronaldoussoren
From: Just v. R. <ju...@le...> - 2003-01-07 12:42:38
|
Dinu Gherman wrote: > http://python.net/~gherman/tmp/QuickTimeViewer.tgz Cool! FWIW, you can also build an bundle with a script like this (typically called buildapp.py): from bundlebuilder import buildapp buildapp( name = "QuickTimeViewer", mainprogram = "__main__.py", resources = ["English.lproj", "MyAppDelegate.py"], nibname = "MainMenu", ) Invoke it from the command line as "python buildapp.py build". This is independent from PB and doesn't need bin-python-main.m. Just |