mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 20:14:37 +00:00

We don't include gl compile before it works properly. For development & test please turn it on in meson_option.txt locally. Change-Id: I2ff8b06f8e1b496922f70ec580662e8886a9b93d
23 lines
532 B
Meson
23 lines
532 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')
|