mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-17 06:51:05 +00:00
32 lines
357 B
Lua
32 lines
357 B
Lua
|
|
project "hello_gtest"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
-- defines { }
|
|
|
|
targetdir "../../bin"
|
|
|
|
includedirs
|
|
{
|
|
".","../gtest-1.7.0/include"
|
|
}
|
|
|
|
-- 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
|