mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-15 06:00:12 +00:00
794c8ec064
add sphere2.urdf move btSpatialAlgebra into LinearMath remove some warnings, introduce BT_ZERO, BT_ONE, BT_HALF as defines for 0.f/0., 1.f/1., 0.5f/0.5 respectively
37 lines
507 B
Lua
37 lines
507 B
Lua
|
|
project "hello_gtest"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
-- defines { }
|
|
|
|
targetdir "../../bin"
|
|
|
|
includedirs
|
|
{
|
|
".","../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
|
|
|
|
-- linkLib "gtest"
|
|
links "gtest"
|
|
|
|
|
|
files {
|
|
"**.cpp",
|
|
"**.h",
|
|
-- "../gtest-1.7.0/src/gtest_main.cc"
|
|
}
|
|
if os.is("Windows") then
|
|
end
|
|
|
|
if os.is("Linux") then
|
|
end
|
|
|
|
if os.is("MacOSX") then
|
|
end
|