thorvg/meson_options.txt
Hermet Park 0dec5a44b6 engine gl: specify gl as beta
The engine hasn't been maintained propelry and it's not functional.
2023-05-12 12:06:00 +09:00

54 lines
1.2 KiB
Meson

option('engines',
type: 'array',
choices: ['sw', 'gl_beta'],
value: ['sw'],
description: 'Enable Rasterizer Engine in thorvg')
option('loaders',
type: 'array',
choices: ['', 'tvg', 'svg', 'png', 'jpg', 'all'],
value: ['svg', 'tvg'],
description: 'Enable File Loaders in thorvg')
option('savers',
type: 'array',
choices: ['', 'tvg', 'all'],
value: [''],
description: 'Enable File Savers in thorvg')
option('vector',
type: 'boolean',
value: false,
description: 'Enable CPU Vectorization(SIMD) in thorvg')
option('bindings',
type: 'array',
choices: ['', 'capi'],
value: [''],
description: 'Enable C API binding')
option('tools',
type: 'array',
choices: ['', 'svg2tvg', 'svg2png', 'all'],
value: [''],
description: 'Enable building thorvg tools')
option('examples',
type: 'boolean',
value: false,
description: 'Enable building examples')
option('tests',
type: 'boolean',
value: false,
description: 'Enable building Unit Tests')
option('log',
type: 'boolean',
value: false,
description: 'Enable log message')
option('static',
type: 'boolean',
value: false,
description: 'Force to use static linking modules in thorvg')