thorvg/meson_options.txt
Hermet Park 729fee5a23 examples: move tests to src/examples
tests is now officially placed in src/examples,
default is turned off, only necessaries turn it on.

ex) meson . build -Dexamples=true

+ this examples are required efl 'elementary' package.
2020-09-19 00:39:25 +09:00

34 lines
764 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')
option('examples',
type: 'boolean',
value: false,
description: 'Enable building examples')