I don't think you can. I usually write a small bash script that does the packaging, from compiling and copying the required libs to tar/gzipping the final app and uploading it. It usually looks like:
#!/bin/sh echo "Compiling" gcc -o something.o -c something.c -L/sw/lib/ -I/sw/include/ echo "Linking" gcc -dynamiclib -o mylib.dylib something.o -lz [etc] echo "Copying the dylib into tester app" mkdir testApp.app/Contents/Frameworks/ cp mylib.dylib testApp.app/Contents/Frameworks/ echo "packing the archive" tar -czf testApp.tgz testApp.app/ echo "Move archive to @Distrib" mv testApp.tgz @Distrib/ echo "Sending file to server" curl -T "@Distrib/testApp.tgz" ftp://login:[EMAIL PROTECTED]/www/upload/testApp.tgz echo "Launching test app" ./testApp.app/Contents/MacOS/testApp HTH -- dda libcurl4RB, [S]FTP transfers made easy http://sungnyemun.org/?q=node/8 RBDeveloper Columnist, "Beyond the Limits" http://rbdeveloper.com On 3/30/06, Steve Goodrich <[EMAIL PROTECTED]> wrote: > I have a dylib that I want to go into my Mach-O application package. I > am also still pretty green when it comes to Mac. Is there a way for me > to tell REALbasic to add this library to my final application package? > > Thanks, > Steve Goodrich
_______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
