common: revise transform interfaces.
[platform/core/graphics/tizenvg.git] / meson_options.txt
1 option('engines',
2    type: 'array',
3    choices: ['sw', 'gl'],
4    value: ['sw', 'gl'],
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')