mindthief
mindthief

Reputation: 13383

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

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

Upvotes: 153

Views: 40053

Answers (1)

JWWalker
JWWalker

Reputation: 22707

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.

Upvotes: 206

Related Questions