I have two paths that I want Xcode to search for headers:
"/myproject/lib1/include"
"/myproject/lib2/include"
What's the correct syntax for adding those two paths inside Xcode's User Header Search Paths? I tried "/myproject/lib1/include";"/myproject/lib2/include"
But it didn't work. It complained that object1.h not found. object1 is inside /myproject/lib1/include
I already added the whole /myproject/lib1/include folder and /myproject/lib2/include folder into the target project.