bullet3/test/hello_gtest/premake4.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