-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmeson_options.txt
60 lines (50 loc) · 1.17 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
option('cb',
type : 'boolean',
value : true,
description : 'ComicBook support in Etui'
)
option('djvu',
type : 'boolean',
value : true,
description : 'DJvu support in Etui'
)
option('tiff',
type : 'boolean',
value : true,
description : 'Tiff support in Etui'
)
option('license',
type : 'string',
value : 'lgplv2',
description : 'License of Etui (pass gplv2 for djvu and agplv3 for mupdf and djvu)'
)
option('mupdf',
type : 'boolean',
value : true,
description : 'MuPDF support in Etui'
)
option('mupdf-libdir',
type : 'string',
value : '/usr/lib',
description : 'path to the static library of mupdf'
)
option('mupdf-includedir',
type : 'string',
value : '/usr/include',
description : 'path to the header files of mupdf, must contain mupdf/ subdir'
)
option('mupdf-static-lib',
type : 'string',
value : 'mupdf',
description : 'name of the static library of mupdf without extension'
)
option('mupdf-static-third',
type : 'string',
value : 'mupdf-third',
description : 'name of the third-party static library of mupdf without extension'
)
option('nls',
type: 'boolean',
value: true,
description: 'enable localization: (default=true)'
)