mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00
29 lines
660 B
Meson
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')
|