I'm trying to compile a project that includes a framework. Inside the .framework folder the file named Headers is just a data file that contains "Versions/A/Headers" (quotes added for clarity). Inside the actual source files for the project some have the import statement
(header).hpp (not the actual name of the file) is located at (framework).framework/Versions/A/Headers/(header).hpp
There's also a file (framework).framework/Versions/Current that's a data file that just contains "A" (quotes added for clarity). I'm getting the compile error
'(framework)/(header).hpp' file not found
How can I resolve it?
I cloned this project from github and this is me just making sure that the project currently compiles and runs on my iPhone, if that makes any difference.
Code:
#import <(framework)/(header).hpp>
(header).hpp (not the actual name of the file) is located at (framework).framework/Versions/A/Headers/(header).hpp
There's also a file (framework).framework/Versions/Current that's a data file that just contains "A" (quotes added for clarity). I'm getting the compile error
'(framework)/(header).hpp' file not found
How can I resolve it?
I cloned this project from github and this is me just making sure that the project currently compiles and runs on my iPhone, if that makes any difference.