up vote 1 down vote favorite
1
share [g+] share [fb]

I am integrating growl into my Objective-C app.

However If I build and run my app without copying the Growl.framework to ~/Library/Frameworks or a corresponding location then my App fails to execute.

I don't really fully understand Frameworks under objective-c, but I was wondering if there is anyway to include the Framework within my App so I don't have to manually distribute the framework to the user?

I believe that's what tweetweet does in there build process but I haven't quite figured out how they did it.

Thanks, Brian

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Yes, in your target in Xcode you need to create a new 'Copy Files' build phase (right click on the target > Add > New Build Phase > New Copy Files Build Phase). When the More Info window pops up, click on the pop up button and choose Frameworks. Drag this build phase to just below the copy resource phase and then drag any frameworks you want copied over to it.

link|improve this answer
Thanks, worked great. Not really sure how I over looked that. – Brian Gianforcaro Jan 23 '09 at 20:06
feedback

Your Answer

 
or
required, but never shown

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