mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
35 lines
590 B
Lua
35 lines
590 B
Lua
|
|
||
|
project "Test_InverseDynamicsKinematics"
|
||
|
|
||
|
kind "ConsoleApp"
|
||
|
|
||
|
-- defines { }
|
||
|
|
||
|
|
||
|
|
||
|
includedirs
|
||
|
{
|
||
|
".",
|
||
|
"../../src",
|
||
|
"../../examples/InverseDynamics",
|
||
|
"../../Extras/InverseDynamics",
|
||
|
"../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 {"BulletInverseDynamicsUtils", "BulletInverseDynamics","Bullet3Common","LinearMath", "gtest"}
|
||
|
|
||
|
files {
|
||
|
"test_invdyn_kinematics.cpp",
|
||
|
}
|
||
|
|
||
|
if os.is("Linux") then
|
||
|
links {"pthread"}
|
||
|
end
|