diff options
Diffstat (limited to '3rdParty/Lua')
-rw-r--r-- | 3rdParty/Lua/SConscript | 4 | ||||
-rw-r--r-- | 3rdParty/Lua/src/lua.hpp | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/3rdParty/Lua/SConscript b/3rdParty/Lua/SConscript index acb2fba..f73286f 100644 --- a/3rdParty/Lua/SConscript +++ b/3rdParty/Lua/SConscript @@ -31,10 +31,6 @@ if env.get("LUA_BUNDLED", False) : if env["SCONS_STAGE"] == "build" : myenv = env.Clone() - if env["PLATFORM"] == "win32" : - myenv.Append(CFLAGS = ["/TP"]) - else : - myenv.Append(CFLAGS = ["-x", "c++"]) # Remove warn flags myenv.Replace(CCFLAGS = [flag for flag in env["CCFLAGS"] if not flag.startswith("-W")]) 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" +} |