summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-29 11:47:40 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-29 11:47:40 +0100
commit042050ef67a0d320469a6f8ca74bd8684ec4c409 (patch)
tree842576848565813c5f33e21fc06ad058f43a8963 /makefile
parent1319453a84718ec50aafdb030eca3bac201995e3 (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 'makefile')
-rw-r--r--makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/makefile b/makefile
index 5086356729e..00ad643427f 100644
--- a/makefile
+++ b/makefile
@@ -20,6 +20,7 @@
# SUBTARGET = tiny
# TOOLS = 1
# TESTS = 1
+# BENCHMARKS = 1
# OSD = sdl
# USE_BGFX = 1
@@ -473,6 +474,10 @@ ifdef TESTS
PARAMS += --with-tests
endif
+ifdef BENCHMARKS
+PARAMS += --with-benchmarks
+endif
+
ifdef SYMBOLS
PARAMS += --SYMBOLS='$(SYMBOLS)'
endif
@@ -698,6 +703,7 @@ SCRIPTS = scripts/genie.lua \
scripts/src/sound.lua \
scripts/src/tools.lua \
scripts/src/tests.lua \
+ scripts/src/benchmarks.lua \
scripts/src/video.lua \
scripts/src/bus.lua \
scripts/src/netlist.lua \