Reputation: 2412
I'm new in Cocoa. My Application require to use third-party framework to be able to launch. How can I integrate that framework setup, in my Application package (using PackageMaker) , so it will be installed automatically if it needed.
Like in Visual Studio, when you make Setup project, you have option to include other frameworks, libraries, to be installed automatically with your App if it's needed.
P.S. I was told to include that framework in my App, using Xcode. I tried, but I think I missed something. Integrate open-source framework into my app
Thanks a lot!
Upvotes: 0
Views: 212
Reputation: 2435
Theres no need to add it in package maker. If your app requires the use of a 3rd party framework you can add it in Xcode under frameworks. Then go and add a build phase "copy files" to frameworks and add your framework.
Upvotes: 3