arabica/tests/DOM/Makefile.am

51 lines
1.5 KiB
Text
Raw Normal View History

2006-09-12 23:21:48 +02:00
check_PROGRAMS = dom_test dom_test_silly
if HAS_STD_WSTRING
check_PROGRAMS += dom_test_wide
endif
if WANT_TESTS
TESTS = $(check_PROGRAMS)
endif
2006-09-12 23:21:48 +02:00
2008-05-04 16:42:09 +02:00
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
2006-09-12 23:21:48 +02:00
LIBARABICA = $(top_builddir)/src/libarabica.la
LIBSILLY = ../CppUnit/libsillystring.la
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
2011-11-25 19:47:54 +01:00
SYSLIBS = @PARSER_LIBS@
2006-09-12 23:21:48 +02:00
test_sources = dom_test_suite.hpp \
dom_conf_test.hpp \
test_Attribute.hpp \
test_CDATA.hpp \
test_CharacterData.hpp \
test_DOMImplementation.hpp \
test_Document.hpp \
test_DocumentFragment.hpp \
test_DocumentType.hpp \
test_Element.hpp \
test_NamedNodeMap.hpp \
test_ProcessingInstruction.hpp \
test_Siblings.hpp \
test_Text.hpp \
test_SAX2DOM.hpp \
test_TreeWalker.hpp \
test_Stream.hpp
dom_test_SOURCES = main.cpp \
$(test_sources)
2011-11-25 19:47:54 +01:00
dom_test_LDADD = $(TESTLIBS) $(SYSLIBS)
dom_test_DEPENDENCIES = $(TESTLIBS)
dom_test_silly_SOURCES = main_silly.cpp \
$(test_sources)
2011-11-25 19:47:54 +01:00
dom_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) $(SYSLIBS)
dom_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY)
dom_test_wide_SOURCES = main_wide.cpp \
$(test_sources)
2011-11-25 19:47:54 +01:00
dom_test_wide_LDADD = $(TESTLIBS) $(SYSLIBS)
dom_test_wide_DEPENDENCIES = $(TESTLIBS)
2006-10-12 00:51:04 +02:00