mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-15 06:00:12 +00:00
24 lines
272 B
Lua
24 lines
272 B
Lua
|
|
|
|
project ("App_LuaStandalone")
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
|
targetdir "../../../../bin"
|
|
includedirs {"../src"}
|
|
|
|
if os.is("Windows") then
|
|
end
|
|
if os.is("Linux") then
|
|
end
|
|
if os.is("MacOSX") then
|
|
end
|
|
|
|
links {"lua-5.2.3"}
|
|
|
|
files {
|
|
"lua.c",
|
|
}
|
|
|