From 7688cf531ab17562b0d984073891fae4d7d2f773 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 1 Dec 2013 20:28:05 +0100 Subject: Add unit tests. --- test/Makefile.am | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test/Makefile.am (limited to 'test/Makefile.am') diff --git a/test/Makefile.am b/test/Makefile.am new file mode 100644 index 0000000..77a0f96 --- /dev/null +++ b/test/Makefile.am @@ -0,0 +1,26 @@ +# Rules for the test code (use `make check` to execute) +include $(top_srcdir)/src/Makefile.am.drumgizmo + +TESTS = engine gui + +check_PROGRAMS = $(TESTS) + +engine_CXXFLAGS = -DOUTPUT=\"engine\" $(CPPUNIT_CFLAGS) \ + -I$(top_srcdir)/src -I$(top_srcdir)/include \ + -I$(top_srcdir)/hugin -DDISABLE_HUGIN + +engine_CFLAGS = -DDISABLE_HUGIN + +engine_LDFLAGS = $(CPPUNIT_LIBS) $(DRUMGIZMO_LIBS) $(PTHREAD_LIBS) + +engine_SOURCES = \ + $(DRUMGIZMO_SOURCES) \ + $(top_srcdir)/hugin/hugin.c \ + test.cc \ + engine.cc + +gui_CXXFLAGS = -DOUTPUT=\"gui\" $(CPPUNIT_CFLAGS) +gui_LDFLAGS = $(CPPUNIT_LIBS) +gui_SOURCES = \ + test.cc \ + gui.cc -- cgit v1.2.3