diff options
author | Nico Weber <nicolasweber@gmx.de> | 2012-06-03 05:58:26 (GMT) |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2012-06-03 05:58:26 (GMT) |
commit | 993566a79c4f3ab19470909dbfdc5cbdb0445ab9 (patch) | |
tree | c285b73cb660b893ee05fb31e49610158be0d0cb /configure.py | |
parent | 19209305c228ce8543f1771cea60c49cef354ed3 (diff) | |
download | Ninja-993566a79c4f3ab19470909dbfdc5cbdb0445ab9.zip Ninja-993566a79c4f3ab19470909dbfdc5cbdb0445ab9.tar.gz Ninja-993566a79c4f3ab19470909dbfdc5cbdb0445ab9.tar.bz2 |
add canon_perftest
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 6 |
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', |