thorvg/meson_options.txt
JunsuChoi 54816339ed svg_loader XmlParser: Print unsupported elements, attribute with log option
* Using printf is temporary. We are planning a proper way to print the log.
When parsing a Svg file, Loader print unsupported elements and attributes.
2020-12-15 14:07:38 +09:00

44 lines
956 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')
option('test',
type: 'boolean',
value: false,
description: 'Enable building unit tests')
option('log',
type: 'boolean',
value: false,
description: 'Enable log message')