mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-25 21:58:21 +01:00
fixes to help out-of-tree builds
This commit is contained in:
parent
261f589f47
commit
dee85af224
13 changed files with 14 additions and 13 deletions
|
@ -1,6 +1,6 @@
|
|||
noinst_PROGRAMS = domwriter dom2pyx
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
|
||||
domwriter_SOURCES = DOMWriter.cpp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
noinst_PROGRAMS = pyx simple_handler writer xmlbase
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
|
||||
pyx_SOURCES = pyx.cpp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
noinst_PROGRAMS = taggle
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
|
||||
taggle_SOURCES = taggle.cpp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
noinst_PROGRAMS = transcode
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
|
||||
transcode_SOURCES = transcode.cpp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
noinst_PROGRAMS = xgrep
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
|
||||
xgrep_SOURCES = xgrep.cpp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
bin_PROGRAMS = mangle
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
|
||||
mangle_SOURCES = mangle.cpp
|
||||
|
|
|
@ -16,7 +16,7 @@ cc_sources = arabica.cpp \
|
|||
io/uri.cpp \
|
||||
XML/XMLCharacterClasses.cpp
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
|
||||
lib_LTLIBRARIES = libarabica.la
|
||||
libarabica_la_SOURCES= $(cc_sources)
|
||||
|
|
|
@ -25,7 +25,7 @@ check_LTLIBRARIES = libcppunit.la libsillystring.la
|
|||
libcppunit_la_SOURCES= $(cppunit_sources)
|
||||
|
||||
libsillystring_la_SOURCES = $(silly_string_sources)
|
||||
libsillystring_la_CPPFLAGS = -I$(top_srcdir)/include
|
||||
libsillystring_la_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ if HAS_STD_WSTRING
|
|||
endif
|
||||
TESTS = $(check_PROGRAMS)
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBSILLY = ../CppUnit/libsillystring.la
|
||||
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
||||
|
|
|
@ -5,7 +5,7 @@ if HAS_STD_WSTRING
|
|||
endif
|
||||
TESTS = $(check_PROGRAMS)
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBSILLY = ../CppUnit/libsillystring.la
|
||||
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
||||
|
|
|
@ -5,13 +5,14 @@ if HAS_STD_WSTRING
|
|||
endif
|
||||
TESTS = $(check_PROGRAMS)
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBSILLY = ../CppUnit/libsillystring.la
|
||||
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
||||
|
||||
test_sources = util_test_suite.hpp \
|
||||
test_normalize_whitespace.hpp \
|
||||
test_xml_strings.hpp \
|
||||
test_base64.hpp \
|
||||
test_uri.hpp
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ if HAS_STD_WSTRING
|
|||
endif
|
||||
TESTS = $(check_PROGRAMS)
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBSILLY = ../CppUnit/libsillystring.la
|
||||
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
||||
|
|
|
@ -5,7 +5,7 @@ TESTS = $(check_PROGRAMS)
|
|||
ELEPHANT_INCLUDE = @ELEPHANT_INCLUDES@
|
||||
LIBELEPHANT = @ELEPHANT_LIBS@
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@ $(ELEPHANT_INCLUDE)
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@ $(ELEPHANT_INCLUDE)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBSILLY = ../CppUnit/libsillystring.la
|
||||
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
||||
|
|
Loading…
Reference in a new issue