1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
option(
'profile',
type: 'combo',
choices: [
'default',
'development'
],
value: 'default',
description: 'The build profile for Warp. One of "default" or "development".'
)
option(
'target',
type: 'string',
value: '',
description: 'Cross compilation target. Leave empty for native compilation.'
)
option(
'qr-code-scanning',
type: 'feature',
value: 'auto',
description: 'Enable qr-code scanning. Requires zbar and gstreamer'
)
option(
'host_arch',
type: 'string',
)
|