summaryrefslogtreecommitdiffstats
blob: f47ae298ecc8b89371a1e91632172d89c2e9c395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
SWIFTEN_SOURCES += \
	Swiften/Parser/XMLParser.cpp \
	Swiften/Parser/XMLParserClient.cpp \
	Swiften/Parser/XMLParserFactory.cpp \
	Swiften/Parser/PlatformXMLParserFactory.cpp \
	Swiften/Parser/XMPPParser.cpp \
	Swiften/Parser/XMPPParserClient.cpp \
	Swiften/Parser/MessageParser.cpp \
	Swiften/Parser/IQParser.cpp \
	Swiften/Parser/PresenceParser.cpp \
	Swiften/Parser/StreamFeaturesParser.cpp \
	Swiften/Parser/CompressParser.cpp \
	Swiften/Parser/AuthRequestParser.cpp \
	Swiften/Parser/StanzaParser.cpp \
	Swiften/Parser/ElementParser.cpp \
	Swiften/Parser/PayloadParser.cpp \
	Swiften/Parser/PayloadParserFactory.cpp \
	Swiften/Parser/PayloadParserFactoryCollection.cpp \
	Swiften/Parser/SerializingParser.cpp

ifeq ($(HAVE_LIBXML),yes)
SWIFTEN_SOURCES += \
	Swiften/Parser/LibXMLParser.cpp
endif

ifeq ($(HAVE_EXPAT),yes)
SWIFTEN_SOURCES += \
	Swiften/Parser/ExpatParser.cpp
endif

include Swiften/Parser/PayloadParsers/Makefile.inc
include Swiften/Parser/UnitTest/Makefile.inc