diff options
Diffstat (limited to '3rdParty/Lua/src')
-rw-r--r-- | 3rdParty/Lua/src/lua.hpp | 5 | ||||
-rw-r--r-- | 3rdParty/Lua/src/luaconf.h | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/3rdParty/Lua/src/lua.hpp b/3rdParty/Lua/src/lua.hpp new file mode 100644 index 0000000..5060a4e --- /dev/null +++ b/3rdParty/Lua/src/lua.hpp @@ -0,0 +1,5 @@ +extern "C" { +#include "lua.h" +#include "lualib.h" +#include "lauxlib.h" +} diff --git a/3rdParty/Lua/src/luaconf.h b/3rdParty/Lua/src/luaconf.h index e2cb261..ee37a9f 100644 --- a/3rdParty/Lua/src/luaconf.h +++ b/3rdParty/Lua/src/luaconf.h @@ -758,5 +758,7 @@ union luai_Cast { double l_d; long l_l; }; */ - +#undef LUA_DL_DYLD +#undef LUA_DL_DLOPEN +#undef LUA_DL_DLL #endif |