diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-07-25 19:27:20 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-08-12 11:13:54 +0200 |
commit | 753cb561f3f72662430c89414f971c8137beb43c (patch) | |
tree | fbf68da6d42644cf33bc7be0300afd12d7bfbe5a /test/Makefile.am | |
parent | 63a68ebd3f8c0118c1fec2f4d6900a0af253a2da (diff) |
Add unit-test for configparser.
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 32f158d..c26b017 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -7,7 +7,7 @@ TESTS = resource enginetest paintertest configfile audiocache \ audiocachefile audiocacheidmanager audiocacheeventhandler \ randomtest atomictest syncedsettingstest imagecachetest \ semaphoretest drumkitcreatortest bytesizeparsertest notifiertest \ - dgxmlparsertest domloadertest + dgxmlparsertest domloadertest configparsertest EXTRA_DIST = \ dgunit.h \ @@ -217,4 +217,16 @@ domloadertest_SOURCES = \ scopedfile.cc \ dgtest.cc +configparsertest_CXXFLAGS = -DOUTPUT=\"configparsertest\" \ + -I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_srcdir)/hugin \ + -I$(top_srcdir)/pugixml/src $(EXPAT_CFLAGS) +configparsertest_LDFLAGS = $(EXPAT_LIBS) +configparsertest_SOURCES = \ + $(top_srcdir)/hugin/hugin.c \ + $(top_srcdir)/src/configparser.cc \ + $(top_srcdir)/src/saxparser.cc \ + $(top_srcdir)/pugixml/src/pugixml.cpp \ + configparsertest.cc \ + dgtest.cc + endif |