forked from linuxmint/xreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
105 lines (105 loc) · 2.29 KB
/
meson_options.txt
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
option('comics',
type: 'boolean',
value: false,
description: 'Support for the comic book (cbr) backend'
)
option('djvu',
type: 'boolean',
value: false,
description: 'Support for the djvu backend'
)
option('dvi',
type: 'boolean',
value: false,
description: 'Support for the dvi backend'
)
option('t1lib',
type: 'boolean',
value: false,
description: 'Compile with t1lib for type1 font support in the dvi backend'
)
option('epub',
type: 'boolean',
value: true,
description: 'Support for the epub backend'
)
option('pdf',
type: 'boolean',
value: true,
description: 'Support for the PDF backend'
)
option('pixbuf',
type: 'boolean',
value: false,
description: 'Support for the generic pixbuf image backend'
)
option('ps',
type: 'boolean',
value: true,
description: 'Support for the PostScript backend'
)
option('tiff',
type: 'boolean',
value: true,
description: 'Support for the tiff backend'
)
option('xps',
type: 'boolean',
value: true,
description: 'Support for the xps backend'
)
option('gtk_unix_print',
type: 'boolean',
value: true,
description: 'Print support'
)
option('keyring',
type: 'boolean',
value: true,
description: 'Keyring support for password-protected documents'
)
option('mathjax-directory',
type: 'string',
value: '',
description: 'Path to the system mathjax installation.'
)
option('previewer',
type: 'boolean',
value: true,
description: 'Build the print previewer program'
)
option('thumbnailer',
type: 'boolean',
value: true,
description: 'Build the thumbnailer program'
)
option('docs',
type: 'boolean',
value: false,
description: 'Build the API references (requires gtk-doc)'
)
option('help_files',
type: 'boolean',
value: false,
description: 'Build the help files'
)
option('introspection',
type: 'boolean',
value: false,
description: 'Enable GObject introspection'
)
option('enable_dbus',
type: 'boolean',
value: true,
description: 'Enable D-Bus support'
)
option('deprecated_warnings',
type: 'boolean',
value: false,
description: 'Show build warnings for deprecations'
)
option('enable_debug',
type: 'boolean',
value: false,
description: 'Enable the runtime debugger'
)