I have two paths that I want Xcode to search for headers:
\"/myproject/lib1/include\"
\"/myproject/lib2/include\"
What\'s th
Dd you actually put the leading /into the path? Because that's an absolute path and probably not what you mean.
You can pass it the relative location using $(SRCROOT)
which expands the the directory containing the Xcode project file.
So, assuming your project file is in the myroject
directory you should put this in your header search paths:
$(SRCROOT)/lib1/include
$(SRCROOT)/lib2/include