examples: move tests to src/examples
[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'],
10    value: ['svg'],
11    description: 'Enable Vector File Loader 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')