@@ -10,6 +10,7 @@ src += Glob('fitz/*.c')
10
10
src += Glob ('pdf/*.c' )
11
11
src += Glob ('xps/*.c' )
12
12
13
+ # freetype
13
14
src += Split ('''
14
15
thirdparty/freetype/src/base/ftbase.c \
15
16
thirdparty/freetype/src/base/ftbbox.c \
@@ -42,6 +43,7 @@ src += Split('''
42
43
thirdparty/freetype/src/winfonts/winfnt.c \
43
44
''' )
44
45
46
+ # jbig2dec
45
47
src += Split ('''
46
48
thirdparty/jbig2dec/jbig2_arith.c \
47
49
thirdparty/jbig2dec/jbig2_arith_int.c \
@@ -60,6 +62,7 @@ src += Split('''
60
62
thirdparty/jbig2dec/jbig2.c \
61
63
''' )
62
64
65
+ # jpeg
63
66
src += Split ('''
64
67
thirdparty/jpeg/jaricom.c \
65
68
thirdparty/jpeg/jcomapi.c \
@@ -94,6 +97,7 @@ src += Split('''
94
97
thirdparty/jpeg/jutils.c \
95
98
''' )
96
99
100
+ # openjpeg
97
101
src += Split ('''
98
102
thirdparty/openjpeg/libopenjpeg/bio.c \
99
103
thirdparty/openjpeg/libopenjpeg/cio.c \
@@ -120,6 +124,20 @@ src += Split('''
120
124
thirdparty/openjpeg/libopenjpeg/tpix_manager.c \
121
125
''' )
122
126
127
+ # zlib
128
+ src += Split ('''
129
+ thirdparty/zlib/adler32.c \
130
+ thirdparty/zlib/compress.c \
131
+ thirdparty/zlib/crc32.c \
132
+ thirdparty/zlib/deflate.c \
133
+ thirdparty/zlib/inffast.c \
134
+ thirdparty/zlib/inflate.c \
135
+ thirdparty/zlib/inftrees.c \
136
+ thirdparty/zlib/trees.c \
137
+ thirdparty/zlib/uncompr.c \
138
+ thirdparty/zlib/zutil.c \
139
+ ''' )
140
+
123
141
path = [cwd + '/' ]
124
142
path += [cwd + '/fitz' ]
125
143
path += [cwd + '/pdf' ]
0 commit comments