forked from gtkwave/gtkwave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
76 lines (66 loc) · 1.3 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
option(
'update_mime_database',
type: 'boolean',
value: true,
description: 'run update-mime-database after install',
)
option(
'struct_packing',
type: 'boolean',
value: false,
description: 'Enable struct packing',
)
option(
'tcl',
type: 'feature',
value: 'auto',
description: 'Tcl support',
)
option(
'judy',
type: 'feature',
value: 'auto',
description: 'Judy support',
)
option(
'manymarkers',
type: 'boolean',
value: false,
description: 'Increase named marker cound from 26 to 702',
)
option(
'fasttree',
type: 'boolean',
value: true,
description: 'Enable Fast SST Tree widget code',
)
option(
'experimental_plugin_support',
type: 'boolean',
value: false,
description: 'Enables experimental plugin support',
)
option(
'libgtkwave_docs',
type: 'boolean',
value: false,
description: 'Build libgtkwave docs',
)
option(
'introspection',
type: 'boolean',
value: true,
description: 'Generate GObject introspection data',
)
option(
'tests',
type: 'boolean',
value: true,
description: 'Build tests',
)
option(
'set_rpath',
type: 'feature',
value: 'auto',
description: 'Set rpath for executables (automatically enabled if the prefix is not /usr)',
)