I am trying to get Xcode to import a header file for Irrlicht.
#include <irrlicht.h>
It says: "Irrlicht.h. There is no such file or directory." Yes, Irrlicht.h with capital I, although #include has a lowercase format.
In any case, I added "/lib/irrlicht-1.6/include" in the header search path for the Xcode project, but it still cannot find it.
The only thing I've tried is this works:
#include "/lib/irrlicht-1.6/include/irrlicht.h"
This is a little ridiculous, but #include should work, I don’t understand why it does not work.
Update (more about the error):
/lib/PAL/pal_benchmark/palBenchmark/main.h:31:0
/lib/PAL/pal_benchmark/palBenchmark/main.h:31:22: error: irrlicht.h: No such file or directory
source
share