There is a possibility in MS Visual Studio to go to Tools->Options->Projects and solutions->VC++ Directories and to add header and binary files of additional C++ libraries, and compiler uses them for every project if they are needed. How to achieve such result in Xcode 3.2?
Thank you!
Look in the “Link Binary With Libraries” build phase under your target. Right click on it, and select “Existing Files…” — then select the library you wish to link to. You don’t have to use a framework as implied earlier.