summaryrefslogtreecommitdiffstats
path: root/src/dom/CMakeLists.txt
blob: df2411b13d66e103569968ee60a0a7e8b873b131 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
set(dom_SRC
	cssreader.cpp
	domimpl.cpp
	domptr.cpp
	domstring.cpp
	lsimpl.cpp
	prop-css2.cpp
	prop-css.cpp
	prop-svg.cpp
	smilimpl.cpp
	svgimpl.cpp
	svgreader.cpp
	ucd.cpp
	uri.cpp
	xmlreader.cpp
	# xmlwriter.cpp
	xpathimpl.cpp
	xpathparser.cpp
	xpathtoken.cpp

	io/base64stream.cpp
	io/bufferstream.cpp
	io/domstream.cpp
	io/gzipstream.cpp
	io/stringstream.cpp
	io/uristream.cpp

	odf/odfdocument.cpp

	util/digest.cpp
	util/thread.cpp
	util/ziptool.cpp


	# -------
	# Headers
	css.h
	cssreader.h
	dom.h
	domimpl.h
	domptr.h
	domstring.h
	events.h
	ls.h
	lsimpl.h
	smil.h
	smilimpl.h
	stylesheets.h
	svg.h
	svg2.h
	svgimpl.h
	svgreader.h
	svgtypes.h
	traversal.h
	ucd.h
	uri.h
	views-level3.h
	views.h
	xmlreader.h
	xmlwriter.h
	xpath.h
	xpathimpl.h
	xpathparser.h
	xpathtoken.h

	odf/odfdocument.h

	io/base64stream.h
	io/bufferstream.h
	io/domstream.h
	io/gzipstream.h
	io/stringstream.h
	io/uristream.h

	util/digest.h
	util/thread.h
	util/ziptool.h
)

add_inkscape_lib(dom_LIB "${dom_SRC}")