|
From: Kevin A. <ka...@us...> - 2004-08-18 00:54:14
|
Update of /cvsroot/pythoncard/PythonCard/tools/findfiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18691/tools/findfiles Modified Files: .cvsignore macbuild.py Log Message: updated bundlebuilder scripts for wxPython 2.5.2 Index: .cvsignore =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/findfiles/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** .cvsignore 17 Apr 2004 07:21:15 -0000 1.4 --- .cvsignore 18 Aug 2004 00:54:01 -0000 1.5 *************** *** 5,6 **** --- 5,8 ---- user.config.txt .DS_Store + build + dist Index: macbuild.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/findfiles/macbuild.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** macbuild.py 22 Jul 2004 21:52:28 -0000 1.1 --- macbuild.py 18 Aug 2004 00:54:01 -0000 1.2 *************** *** 38,43 **** # bundlebuilder does not yet have the capability to detect what shared libraries # are needed by your app - so in this case I am adding the wxPython libs manually ! myapp.libs.append("/usr/local/lib/libwx_mac-2.4.0.dylib") ! myapp.libs.append("/usr/local/lib/libwx_mac-2.4.0.rsrc") # Here we build the app! --- 38,44 ---- # bundlebuilder does not yet have the capability to detect what shared libraries # are needed by your app - so in this case I am adding the wxPython libs manually ! myapp.libs.append("/usr/local/lib/wxPython-2.5.2.7/lib/libwx_macd-2.5.2.dylib") ! myapp.libs.append("/usr/local/lib/wxPython-2.5.2.7/lib/libwx_macd-2.5.2.rsrc") ! myapp.libs.append("/usr/local/lib/wxPython-2.5.2.7/lib/libwx_macd_stc-2.5.2.dylib") # Here we build the app! |