vote up 2 vote down star
1

Hi Suppose I have have made a an osX app without using Xcode. After compiling with GCC I get an executable which is linked to several other libraries. Some of those libraries might again be dynamically linked to other non-standard system libraries

Is there any tool which exists which makes an OSX App bundle by first making the required directory structures and then recursively copying/checking/fixing links to make sure all the dynamic dependencies are also in the app bundle?

I guess I can try writing something like this but I was wondering if something like this exists already.

flag
And you can't use Xcode because...? – NSD Oct 21 at 4:25
I havn't used Xcode much. I use cmake, and I can generate an Xcode project. However will xcode make correct bundles while using non-standard dylibs? – Yogi Oct 25 at 14:47
You've probably spent more time worrying about problems that don't exist than it would have taken for you to try it and find out. – NSD Oct 28 at 3:39

2 Answers

vote up 0 vote down

There are some open source tools to help build app bundles with dependent libraries for specific environments, for example, py2app for Python-based applications. If you don't find a more general one, perhaps you can adapt it to your needs.

link|flag
vote up 1 vote down

There's really nothing magic about the bundle - just read Apple's documentation on it, and mimic it. At the base, you need an Info.plist, the Contents/MacOS/binary, and an icon.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.