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
19 lines
317 B
Lua
19 lines
317 B
Lua
project "gtest"
|
|
|
|
kind "StaticLib"
|
|
|
|
files{"src/gtest-all.cc"}
|
|
|
|
--defines {"GTEST_HAS_PTHREAD=1"}
|
|
|
|
if os.is("Windows") then
|
|
--see http://stackoverflow.com/questions/12558327/google-test-in-visual-studio-2012
|
|
defines {"_VARIADIC_MAX=10"}
|
|
end
|
|
|
|
--targetdir "../../lib"
|
|
|
|
includedirs {
|
|
".","include"
|
|
}
|