diff options
author | Eric Blossom <eb@comsec.com> | 2009-08-18 18:57:33 -0700 |
---|---|---|
committer | Eric Blossom <eb@comsec.com> | 2009-08-18 18:57:33 -0700 |
commit | f7bc7ed21decef03737effa69402d127e1cb54d9 (patch) | |
tree | c764f692c75ee8bf8fc12fced2e84ca6347bd335 /gruel/src/lib/Makefile.am | |
parent | 0f90ae17548c89a9ccde112948a6b57b54c2a01c (diff) |
QA code now works.
Diffstat (limited to 'gruel/src/lib/Makefile.am')
-rw-r--r-- | gruel/src/lib/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gruel/src/lib/Makefile.am b/gruel/src/lib/Makefile.am index 6dfb6787c8..9afa0d292f 100644 --- a/gruel/src/lib/Makefile.am +++ b/gruel/src/lib/Makefile.am @@ -25,6 +25,12 @@ SUBDIRS = pmt msg AM_CPPFLAGS = $(DEFINES) $(BOOST_CPPFLAGS) $(CPPUNIT_INCLUDES) $(GRUEL_INCLUDES) $(WITH_INCLUDES) + +TESTS = test_gruel + +noinst_PROGRAMS = test_gruel + + lib_LTLIBRARIES = libgruel.la # magic flags @@ -47,3 +53,10 @@ libgruel_la_LIBADD = \ $(PMT_LIB) \ $(MSG_LIB) \ -lstdc++ + + +# ---------------------------------------------------------------- + +test_gruel_SOURCES = test_gruel.cc +test_gruel_LDADD = libgruel.la pmt/libpmt-qa.la + |