prepare for some basic lua scripting example

This commit is contained in:
Erwin Coumans
2015-05-13 09:17:59 -07:00
parent 074b869a9f
commit dbae21ae5a
68 changed files with 20797 additions and 0 deletions

View File

@@ -60,6 +60,11 @@
trigger = "enet",
description = "Enable enet NAT punchthrough test"
}
newoption
{
trigger = "lua",
description = "Enable Lua scipting support in Example Browser"
}
newoption
{
@@ -156,6 +161,10 @@ if not _OPTIONS["ios"] then
include "../test/enet/client"
include "../test/enet/server"
end
if _OPTIONS["lua"] then
include "../examples/ThirdPartyLibs/lua-5.2.3"
end
include "../src/Bullet3Common"
include "../src/Bullet3Geometry"