diff options
author | Chris Dyer <redpony@gmail.com> | 2010-01-24 08:36:21 +0000 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2010-01-24 08:36:21 +0000 |
commit | 613ccc6ea2401e76099a97d3698f13b8ea283497 (patch) | |
tree | 5d0c3af86e3986f033ce23fbfb445fb19f0097f1 /vest/Makefile.am | |
parent | a216521744cd4bf1c9935d99c5e53e4198301b57 (diff) |
Support building without gtest
Now the only dependence is boost, which most modern linux distros have.
Diffstat (limited to 'vest/Makefile.am')
-rw-r--r-- | vest/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/vest/Makefile.am b/vest/Makefile.am index d7d08133..80ad7218 100644 --- a/vest/Makefile.am +++ b/vest/Makefile.am @@ -1,12 +1,16 @@ bin_PROGRAMS = \ mr_vest_map \ mr_vest_reduce \ - scorer_test \ - lo_test \ mr_vest_generate_mapper_input \ fast_score \ union_forests +if HAVE_GTEST +noinst_PROGRAMS = \ + scorer_test \ + lo_test +endif + union_forests_SOURCES = union_forests.cc union_forests_LDADD = $(top_srcdir)/decoder/libcdec.a -lz |