I am trying to compile a c++ library in Xcode but I am getting "file not found" errors for the .h files
#include <Class.h>
does not give any errors
but
#include <path/to/Class.h>
gives a file not found error.
Any idea how I can fix it?
I am trying to compile a c++ library in Xcode but I am getting "file not found" errors for the .h files
#include <Class.h>
does not give any errors
but
#include <path/to/Class.h>
gives a file not found error.
Any idea how I can fix it?