I read in this tutorial that your static library output path for header files should be structured like this for example:
Build/Products/Debug-iphoneos/YourLibraryName
Then you are able to use <YourLibraryName/YourLibraryName.h> as import.
I followed all steps and configured for the target of my static library project (in the static library xcode project) the Public Headers Folder Path to just YourLibraryName instead of /usr/local/include. The change applied to all phases, Debug and Release.
Ok so then I cleaned all targets and deleted the build folder in Finder and build again. But no change. Xcode keeps copying header files to
Build/Products/Debug-iphoneos/include/YourLibraryName
It doesn't want to skip the "include" folder. I also tried to change the Private headers folder path but also no effect. Is this a bug in Xcode or is there a workaround?
My goal is, I want to have a static library xcode project for my common utility classes. And then drag this into all my apps that use them, and include the framework like the Apple frameworks with angle brackets .