I’m using
flite1.4-iphone
in my application for text to speech. I’m following this link- see here
but i get the error
Lexical or preprocessor Issue: flite.h not found
Yes i searched google for this and apply all the solutions that i found like- close Xcode and reopen, clean project etc etc, but still cant found solution.
Can anyone help me please?
Thanks.
The problem is that the compiler cannot find
flite.h; looking at sfoster/iPhone TTS, it seems the file is supplied in theflite-1.4-iphone/include/directory.To make the compiler find the file, add the directory where
flite.his in (e.g.,$(SRCROOT)/flite-1.4-iphone/include/to the project’s Header Search Paths. (see this SO Q&A for details on how to modify the path).