thorvg/meson_options.txt
2020-09-17 20:53:54 +09:00

29 lines
660 B
Meson

option('engines',
type: 'array',
choices: ['sw', 'gl'],
value: ['sw'],
description: 'Enable Rasterizer Engine in thorvg')
option('loaders',
type: 'array',
choices: ['', 'svg'],
value: ['svg'],
description: 'Enable Vector File Loader in thorvg')
option('vectors',
type: 'array',
choices: ['', 'avx'],
value: [''],
description: 'Enable CPU Vectorization(SIMD) in thorvg')
option('bindings',
type: 'array',
choices: ['', 'capi'],
value: ['capi'],
description: 'Enable C API binding')
option('tools',
type: 'array',
choices: ['', 'svg2png'],
value: [''],
description: 'Enable building ThorVG Tools')