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
|
mdvi_sources = [
'afmparse.c',
'afmparse.h',
'bitmap.c',
'bitmap.h',
'color.c',
'color.h',
'common.c',
'common.h',
'defaults.h',
'dviopcodes.h',
'dviread.c',
'files.c',
'font.c',
'fontmap.c',
'fontmap.h',
'fontsrch.c',
'gf.c',
'hash.c',
'hash.h',
'list.c',
'mdvi.h',
'pagesel.c',
'paper.c',
'paper.h',
'pk.c',
'private.h',
'setup.c',
'special.c',
'sp-epsf.c',
'sysdeps.h',
't1.c',
'tfm.c',
'tfmfile.c',
'tt.c',
'util.c',
'vf.c',
]
mdvi_c_args = [
'-DSIZEOF_INT=__SIZEOF_INT__',
'-DSIZEOF_LONG=__SIZEOF_LONG__',
'-DSIZEOF_SHORT=__SIZEOF_SHORT__',
'-DSIZEOF_VOID_P=__SIZEOF_POINTER__',
]
mdvi_deps = [
kpathsea,
]
if t1_enabled
mdvi_c_args += '-DWITH_TYPE1_FONTS'
mdvi_deps += t1lib
endif
libmdvi = static_library(
'mdvi',
mdvi_sources,
c_args: mdvi_c_args,
include_directories: include_dirs,
dependencies: mdvi_deps,
)
libmdvi_dep = declare_dependency(
include_directories: include_directories('.'),
link_with: libmdvi,
)
|