summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2012-06-03 05:58:26 (GMT)
committerNico Weber <nicolasweber@gmx.de>2012-06-03 05:58:26 (GMT)
commit993566a79c4f3ab19470909dbfdc5cbdb0445ab9 (patch)
treec285b73cb660b893ee05fb31e49610158be0d0cb /configure.py
parent19209305c228ce8543f1771cea60c49cef354ed3 (diff)
downloadNinja-993566a79c4f3ab19470909dbfdc5cbdb0445ab9.zip
Ninja-993566a79c4f3ab19470909dbfdc5cbdb0445ab9.tar.gz
Ninja-993566a79c4f3ab19470909dbfdc5cbdb0445ab9.tar.bz2
add canon_perftest
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 312fbcb..5fb22fe 100755
--- a/configure.py
+++ b/configure.py
@@ -322,8 +322,12 @@ objs = cxx('build_log_perftest')
build_log_perftest = n.build(binary('build_log_perftest'), 'link', objs,
implicit=ninja_lib,
variables=[('libs', libs)])
+objs = cxx('canon_perftest')
+canon_perftest = n.build(binary('canon_perftest'), 'link', objs,
+ implicit=ninja_lib,
+ variables=[('libs', libs)])
n.newline()
-all_targets += parser_perftest + build_log_perftest
+all_targets += parser_perftest + build_log_perftest + canon_perftest
n.comment('Generate a graph using the "graph" tool.')
n.rule('gendot',