mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
28 lines
349 B
Lua
28 lines
349 B
Lua
project "lua-5.2.3"
|
|
|
|
kind "StaticLib"
|
|
|
|
--flags {}
|
|
|
|
|
|
defines { "LUA_COMPAT_ALL"}
|
|
|
|
if os.is("Linux") then
|
|
defines {"LUA_USE_LINUX"}
|
|
end
|
|
if os.is("MacOSX") then
|
|
defines {"LUA_USE_MACOSX"}
|
|
end
|
|
|
|
targetdir "../../../lib"
|
|
includedirs {
|
|
"src"
|
|
}
|
|
files {
|
|
"src/*.c",
|
|
"src/*.h"
|
|
}
|
|
|
|
include "lua_compiler"
|
|
include "lua_standalone"
|