Header file not found

I have a project that has a static library with links to header files:

#import <libetpan/libetpan.h> 

I cannot change this import line. What should I do so that Xcode finds these header files? I have a folder with header files that I can import into the project. Thank you

Currently, the error is as follows:

 'libetpan/libetpan.h' file not found 
+4
source share
1 answer

You may have added the libetpan folder to your project (if not, do it)

right-click on this folder and look at the path (get information after right-clicking)

if this is not the native file of your project in the folder structure (check in finder), that is, where it is mistaken

alternately, you can add header search paths: header search path in Xcode 4

+6
source

All Articles