diff options
author | 2016-01-29 11:47:40 +0100 | |
---|---|---|
committer | 2016-01-29 11:47:40 +0100 | |
commit | 042050ef67a0d320469a6f8ca74bd8684ec4c409 (patch) | |
tree | 842576848565813c5f33e21fc06ad058f43a8963 /scripts/src/3rdparty.lua | |
parent | 1319453a84718ec50aafdb030eca3bac201995e3 (diff) |
Added Google Benchmark library (nw)
Included sample benchmark for eminline for native and noasm
Made GoogleTest compile only if tests are compiled
Diffstat (limited to 'scripts/src/3rdparty.lua')
-rw-r--r-- | scripts/src/3rdparty.lua | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 2bee6477f01..66fba9f2144 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -917,39 +917,3 @@ links { "portaudio", } end - --------------------------------------------------- --- GoogleTest library objects --------------------------------------------------- - -project "gtest" - uuid "fa306a8d-fb10-4d4a-9d2e-fdb9076407b4" - kind "StaticLib" - - configuration { "gmake" } - buildoptions { - "-Wno-undef", - "-Wno-unused-variable", - } - - configuration { "mingw-clang" } - buildoptions { - "-O0", -- crash of compiler when doing optimization - } - - configuration { "vs*" } -if _OPTIONS["vs"]=="intel-15" then - buildoptions { - "/Qwd1195", -- error #1195: conversion from integer to smaller pointer - } -end - - configuration { } - - includedirs { - MAME_DIR .. "3rdparty/googletest/googletest/include", - MAME_DIR .. "3rdparty/googletest/googletest", - } - files { - MAME_DIR .. "3rdparty/googletest/googletest/src/gtest-all.cc", - } |