I'm guessing this is a stupid bug in XCode 4.2.1 but maybe someone has an idea of how to fix it? I have a workspace with three projects RestKit, B, and C. In B's pch file I have
#import <RestKit/RestKit.h>
the header path for RestKit is set in the build settings. Everything compiles fine. However the indexer cannot find this path and punts on indexing all of B. The error in console is:
Jan 17 10:46:15 BigMac [0x0-0x53f53f].com.apple.dt.Xcode[38195]: /XXX/BBB-Prefix.pch:8:9: fatal error: 'RestKit/RestKit.h' file not found
which appears to me that the indexer is ignoring the build setting. THe only thing I can think of to fix this is to manually include all of B's include files in C which defeats the whole point of a workspace.