add GoogleTest gtest-1.7.0 and simple hello_gtest (preparation for unit tests)

This commit is contained in:
Erwin Coumans
2014-01-31 00:18:35 -08:00
parent 2901d4682e
commit d37a40caf1
38 changed files with 31272 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
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