I am trying to include the OpenEars Framework in my project. But it does not seem to see the path to my headers unless I write the absolute path.
Absolute path works
#import </Absolute_PATH_To_Framework/OpenEars.framework/Headers/OELanguageModelGenerator.h>
#import <Absolute_PATH_To_Framework/Headers/OEAcousticModel.h>
The path from the framework does not work though #import #import
OpenEars developer here. If you have an issue with including OpenEars' headers there is probably some other issue in the app, since configuring header search paths and/or giving unusual import statements aren't needed for using the framework. I recommend either following the tutorial here: http://www.politepix.com/openears/tutorial or examining the sample app that ships with OpenEars to compare against known-working examples of the framework being successfully added to a project. If you want to troubleshoot it with me further, go ahead and bring your question over to the OpenEars forums since Stack Overflow isn't oriented towards in-depth troubleshooting processes.