Reputation: 13383
What's the difference? When would you use either?
Upvotes: 153
Views: 40053
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