forked from dimmus/ensen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
executable file
·55 lines (47 loc) · 1.14 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
option('docs',
type: 'feature',
value: 'auto',
description: 'generate and install man pages (default=false)'
)
option('website',
type: 'boolean',
value: false,
description: 'build website, requires docs to be enabled',
)
option('nls',
type: 'boolean',
value: true,
description: 'enable localization (default=false)'
)
option('memguard',
type: 'boolean',
value: true,
description: 'use internal guarded memory allocator (default=false)'
)
option('debug-conf',
type: 'boolean',
value: false,
description: 'show configuration setup debug info (default=false)'
)
option('tests',
type: 'boolean',
value: true,
description: 'build tests (default=false)'
)
option('examples',
type: 'boolean',
value: false,
description: 'build examples (default=false)'
)
option('ui-backend',
type : 'combo',
choices : ['gnuplot', 'efl', 'sdl', 'nuklear', 'plplot', 'python'],
value : 'gnuplot',
description : 'Graphical output backend'
)
option('random',
type : 'combo',
choices : ['std', 'mt'],
value : 'std',
description : 'Choose method to generate random numbers (default=std)'
)