mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00

thorvg is going to use catch2 framework, this is a cleanup work before introducing catch2 utc. See Catch2: https://github.com/catchorg/Catch2/tree/v2.x
39 lines
854 B
Meson
39 lines
854 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('log',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Enable log message')
|