mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 21:30:09 +00:00
6bc3f94f52
Gold data is created by numerically solving a second-order non-linear differential equation. (see examples/MultiBody/pendulum_gold.h)
35 lines
561 B
Lua
35 lines
561 B
Lua
|
|
project "Test_BulletDynamics"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
defines {"USE_GTEST"}
|
|
|
|
|
|
|
|
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 {"BulletDynamics", "BulletCollision","LinearMath", "gtest"}
|
|
|
|
files {
|
|
"../../../examples/MultiBody/Pendulum.cpp",
|
|
"../../../examples/MultiBody/pendulum_gold.h",
|
|
}
|
|
|
|
if os.is("Linux") then
|
|
links {"pthread"}
|
|
end
|
|
|