forked from thorvg/thorvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
49 lines (41 loc) · 1.06 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
option('engines',
type: 'array',
choices: ['sw', 'gl'],
value: ['sw'],
description: 'Enable Rasterizer Engine in thorvg')
option('loaders',
type: 'array',
choices: ['', 'tvg', 'svg', 'png', 'jpg'],
value: ['svg', 'tvg'],
description: 'Enable File Loaders in thorvg')
option('savers',
type: 'array',
choices: ['', 'tvg'],
value: [''],
description: 'Enable File Savers in thorvg')
option('vector',
type: 'boolean',
value: false,
description: 'Enable CPU Vectorization(SIMD) in thorvg')
option('bindings',
type: 'array',
choices: ['', 'capi'],
value: [''],
description: 'Enable C API binding')
option('tools',
type: 'array',
choices: ['', 'svg2tvg', 'svg2png'],
value: [''],
description: 'Enable building thorvg tools')
option('examples',
type: 'boolean',
value: false,
description: 'Enable building examples')
option('tests',
type: 'boolean',
value: false,
description: 'Enable building Unit Tests')
option('log',
type: 'boolean',
value: false,
description: 'Enable log message')