I have a File.framework file and wish to link it against my project by using the Other Linker Flags section of the build. Its under build settings, Other Linker Flags.
Typically it has -framework Cocoa type entries, but I have a framework file I want to reference. How can I link the framework file?
File.frameworkisn't just a plain file but actually a framework,-framework File.frameworkshould do the job. You will have to adjust theFramework Search Pathbuild setting, i.e., add the path to your framework to it. I can't really test this at the moment because I don't have a non-Apple framework at hand...