views:

190

answers:

1

I have Cocoa project which uses Lua.framework.

In the header file I try to include some .h files from this framework:

...
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
...

And when I compile the source file I get this error:

error: lua.h: No such file or directory
error: lauxlib.h: No such file or directory
error: lualib.h: No such file or directory

Why does it happen?

+2  A: 

I fixed this issue by rebuilding the Lua framework.

e40pud
May as well accept your own answer, then.
John Zwinck