mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 07:34:45 +00:00
* Adjustment: Update Bullet version to 3.24.
This commit is contained in:
parent
35de012ee7
commit
4a3f31df2a
6148 changed files with 2112532 additions and 56873 deletions
46
Engine/lib/bullet/test/collision/premake4.lua
Normal file
46
Engine/lib/bullet/test/collision/premake4.lua
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
|
||||
project "Test_BulletCollision"
|
||||
|
||||
kind "ConsoleApp"
|
||||
|
||||
-- defines { }
|
||||
|
||||
|
||||
|
||||
includedirs
|
||||
{
|
||||
".",
|
||||
"../../src",
|
||||
"../gtest-1.7.0/include"
|
||||
|
||||
}
|
||||
|
||||
|
||||
if os.is("Windows") then
|
||||
--see http://stackoverflow.com/questions/12558327/google-test-in-visual-studio-2012
|
||||
defines {"_VARIADIC_MAX=10"}
|
||||
end
|
||||
|
||||
links {"LinearMath", "gtest"}
|
||||
|
||||
files {
|
||||
"**.cpp",
|
||||
"**.h",
|
||||
"../../src/BulletCollision/NarrowPhaseCollision/btVoronoiSimplexSolver.cpp",
|
||||
"../../src/BulletCollision/NarrowPhaseCollision/btVoronoiSimplexSolver.h",
|
||||
|
||||
-- the *Shape.* files are not strictly necessary if you provide your own 'support' function
|
||||
"../../src/BulletCollision/CollisionShapes/btSphereShape.cpp",
|
||||
"../../src/BulletCollision/CollisionShapes/btMultiSphereShape.cpp",
|
||||
"../../src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.cpp",
|
||||
"../../src/BulletCollision/CollisionShapes/btConvexShape.cpp",
|
||||
"../../src/BulletCollision/CollisionShapes/btConvexInternalShape.cpp",
|
||||
"../../src/BulletCollision/CollisionShapes/btCollisionShape.cpp",
|
||||
"../../src/BulletCollision/CollisionShapes/btConvexPolyhedron.cpp",
|
||||
|
||||
}
|
||||
|
||||
if os.is("Linux") then
|
||||
links {"pthread"}
|
||||
end
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue