mirror of https://github.com/axmolengine/axmol.git
25 lines
560 B
Lua
25 lines
560 B
Lua
project "BulletDynamics"
|
|
kind "StaticLib"
|
|
includedirs {
|
|
"..",
|
|
}
|
|
if os.is("Linux") then
|
|
buildoptions{"-fPIC"}
|
|
end
|
|
files {
|
|
"Dynamics/*.cpp",
|
|
"Dynamics/*.h",
|
|
"ConstraintSolver/*.cpp",
|
|
"ConstraintSolver/*.h",
|
|
"Featherstone/*.cpp",
|
|
"Featherstone/*.h",
|
|
"MLCPSolvers/*.cpp",
|
|
"MLCPSolvers/*.h",
|
|
"Vehicle/*.cpp",
|
|
"Vehicle/*.h",
|
|
"Character/*.cpp",
|
|
"Character/*.h"
|
|
|
|
}
|
|
|