"Header Search Paths" vs. "User Header Search Paths" in Xcode?
What's the difference? When would you use either?
Solution 1:
Use the User Header Search Paths for paths you want searched for #include "..."
and use the Header Search Paths for #include <...>
. Of course, if you check the option to Always Search User Paths, then #include <...>
will also work for the user paths.