svg_loader SvgLoader: Copy the missing composite url
[platform/core/graphics/tizenvg.git] / meson_options.txt
1 option('engines',
2    type: 'array',
3    choices: ['sw', 'gl'],
4    value: ['sw'],
5    description: 'Enable Rasterizer Engine in thorvg')
6
7 option('loaders',
8    type: 'array',
9    choices: ['', 'svg', 'tvg', 'png'],
10    value: ['svg'],
11    description: 'Enable File Loaders in thorvg')
12
13 option('vectors',
14    type: 'array',
15    choices: ['', 'avx'],
16    value: [''],
17    description: 'Enable CPU Vectorization(SIMD) in thorvg')
18
19 option('bindings',
20    type: 'array',
21    choices: ['', 'capi'],
22    value: ['capi'],
23    description: 'Enable C API binding')
24
25 option('tools',
26    type: 'array',
27    choices: ['', 'svg2png'],
28    value: [''],
29    description: 'Enable building thorvg tools')
30
31 option('examples',
32     type: 'boolean',
33     value: false,
34     description: 'Enable building examples')
35
36 option('tests',
37    type: 'boolean',
38    value: false,
39    description: 'Enable building Unit Tests')
40
41 option('log',
42     type: 'boolean',
43     value: false,
44     description: 'Enable log message')