I have static lib project from which I am exporting a single header file. I used this Apple document to configure the static library. Twice ;) In the same workspace I have another project which links to the static library. I used the above mentioned guide to configure this as well.
I have no issues building the static library. However, when I attempt to build the application which links to my static library the static lib build fails. It complains that it cannot locate header files referenced in the exported header.
Why would this be? Is my static library being built in a different location when building the linking project?
Can anyone give me some tips to trouble shoot this? I am following the documentation to a "T".
Thanks!