"Header Search Paths" vs. "User Header Search Paths" in Xcode?

Xcode

Xcode Problem Overview


What's the difference? When would you use either?

Xcode Solutions


Solution 1 - Xcode

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.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmindthiefView Question on Stackoverflow
Solution 1 - XcodeJWWalkerView Answer on Stackoverflow