Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm generating some proto c++ classes which get created in a nested directory structure. Classes using them define this import:

#include "com/x/y/z/MarketDataEntryTypeProto.pb.h"

Note there are no angle brackets.

I have created the underlying dir structure on disk then import the com directory in to the project.

How do I configure Xcode to find these?

I have searched the forum but cannot find an answer related where the import has no angle brackets.

Pulling my hair out, thanks.

share|improve this question
If you've added the com directory to your project then this should just work. Note that you can just use #include "MarketDataEntryTypeProto.pb.h" rather than #include "com/x/y/z/MarketDataEntryTypeProto.pb.h". If all else fails then add an include path for com in your build settings. – Paul R Jan 11 at 13:08
That's what I thought, but I get a lexical preprocessor error. – JamesC Jan 11 at 13:09
Can you post the actual commands and error message(s) from the build transcript ? – Paul R Jan 11 at 13:10
Add the path in the header search paths in build settings – abhinav Jan 11 at 13:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.