mirror of https://github.com/axmolengine/axmol.git
24 lines
449 B
Lua
24 lines
449 B
Lua
|
project "BulletCollision"
|
||
|
|
||
|
kind "StaticLib"
|
||
|
if os.is("Linux") then
|
||
|
buildoptions{"-fPIC"}
|
||
|
end
|
||
|
includedirs {
|
||
|
"..",
|
||
|
}
|
||
|
files {
|
||
|
"*.cpp",
|
||
|
"*.h",
|
||
|
"BroadphaseCollision/*.cpp",
|
||
|
"BroadphaseCollision/*.h",
|
||
|
"CollisionDispatch/*.cpp",
|
||
|
"CollisionDispatch/*.h",
|
||
|
"CollisionShapes/*.cpp",
|
||
|
"CollisionShapes/*.h",
|
||
|
"Gimpact/*.cpp",
|
||
|
"Gimpact/*.h",
|
||
|
"NarrowPhaseCollision/*.cpp",
|
||
|
"NarrowPhaseCollision/*.h",
|
||
|
}
|