thorvg/meson_options.txt
Hermet Park 3a538340aa infra: disable capi in default.
capi is not mandatory option in v0.1.

we can manually toggle it on when it's necessary.
2021-04-30 19:15:05 +09:00

44 lines
953 B
Meson

option('engines',
type: 'array',
choices: ['sw', 'gl'],
value: ['sw'],
description: 'Enable Rasterizer Engine in thorvg')
option('loaders',
type: 'array',
choices: ['', 'svg', 'png'],
value: ['svg'],
description: 'Enable File Loaders in thorvg')
option('vectors',
type: 'array',
choices: ['', 'avx'],
value: [''],
description: 'Enable CPU Vectorization(SIMD) in thorvg')
option('bindings',
type: 'array',
choices: ['', 'capi'],
value: [''],
description: 'Enable C API binding')
option('tools',
type: 'array',
choices: ['', 'svg2png'],
value: [''],
description: 'Enable building thorvg tools')
option('examples',
type: 'boolean',
value: false,
description: 'Enable building examples')
option('test',
type: 'boolean',
value: false,
description: 'Enable building unit tests')
option('log',
type: 'boolean',
value: false,
description: 'Enable log message')