I have two paths that I want Xcode to search for headers:
\"/myproject/lib1/include\" \"/myproject/lib2/include\"
What\'s th
Suppose you want to use your project directory, then you should use:
"$PROJECT_DIR"
Double quotes are advised if your project path has spaces.
Enable recursive if you want to search within the folders as well. Alternatively, you can use "$(SRCROOT)"
"$(SRCROOT)"