mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 23:54:35 +00:00
* Adjustment: Initial CMake reworking.
This commit is contained in:
parent
516163fd5d
commit
d7cdf54661
5394 changed files with 2615532 additions and 8711 deletions
36
Engine/lib/bullet/test/hello_gtest/premake4.lua
Normal file
36
Engine/lib/bullet/test/hello_gtest/premake4.lua
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue