Xcode cannot find #Include<> header
问题 I'm trying to get Xcode to import the header file for Irrlicht. #include <irrlicht.h> It says "Irrlicht.h. No such file or directory". Yes Irrlicht.h with a capital I, even though the #include is lowercase. Anyway I added "/lib/irrlicht-1.6/include" in the header search paths for the Xcode project, yet it still doesn't find it. The only thing I've tried that does work is: #include "/lib/irrlicht-1.6/include/irrlicht.h" This is a bit ridiculous though, #include should work, I don't understand