Files
NazaraEngine/thirdparty/build/lua.lua
Jérôme Leclercq 966c0b32aa Remove LUA_USE_WINDOWS define
as it's defined by luaconf.h
2020-09-05 12:56:06 +02:00

15 lines
308 B
Lua

LIBRARY.Name = "lua"
LIBRARY.Language = "C++" -- Compile as C++ to make Lua use exceptions instead of SJLJ
LIBRARY.Files = {
"../thirdparty/include/Lua/*.h",
"../thirdparty/include/Lua/*.hpp",
"../thirdparty/src/Lua/*.h",
"../thirdparty/src/Lua/*.cpp"
}
LIBRARY.OsDefines.Posix = {
"LUA_USE_LINUX"
}