e40pud
e40pud

Reputation: 336

Mac OS X. No such file or directory for Lua framework

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?

Upvotes: 0

Views: 1604

Answers (1)

e40pud
e40pud

Reputation: 336

I fixed this issue by rebuilding the Lua framework.

Upvotes: 2

Related Questions