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

revise previous patch code. 1. turned off it in default. 2. + copyright declaration. 3. fix coding convention.
29 lines
661 B
Meson
29 lines
661 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('utilities',
|
|
type: 'array',
|
|
choices: ['', 'svg2png'],
|
|
value: [''],
|
|
description: 'Enable building utilities')
|