Reputation: 6491
I want to add a 3rd party library Speech-To-Textto my Xcode
project. I just drag xcodeproj
file in my iPhone project.Then I did follow steps like Target Dependencies,Link Binary with libraries and set Header Search path. But I confused in how to set Header search Path properly.Then I import #import SpeechToTextModule.h
' that time i got error like SpeechToTextModule.h
file not found.Please help me.
Thanks in advance!!!
Upvotes: 5
Views: 20063
Reputation: 2461
Following are the steps to add header search path for external 3rd party libraries :
/
and surrounding quotesUpvotes: 9
Reputation: 313
For static library, along with library we need to add header files to Xcode project.
Upvotes: 0