mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2026-01-07 11:32:59 +00:00
'meson configure' will show the current value of an option, specifying the default value in the option description does not add much to that output. Signed-off-by: Christophe Fergeau <cfergeau@redhat.com> Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
39 lines
944 B
Meson
39 lines
944 B
Meson
option('alignment-checks',
|
|
type : 'boolean',
|
|
value : false,
|
|
yield : true,
|
|
description : 'Enable runtime checks for cast alignment')
|
|
|
|
option('extra-checks',
|
|
type : 'boolean',
|
|
value : false,
|
|
yield : true,
|
|
description : 'Enable extra checks on code')
|
|
|
|
option('celt051',
|
|
type : 'combo',
|
|
choices : ['true', 'false', 'auto'],
|
|
value : 'auto',
|
|
description: 'Enable celt051 audio codec')
|
|
|
|
option('opus',
|
|
type : 'combo',
|
|
choices : ['true', 'false', 'auto'],
|
|
description: 'Enable Opus audio codec')
|
|
|
|
option('python-checks',
|
|
type : 'boolean',
|
|
value : true,
|
|
description : 'Enable checks for Python modules needed to build from git')
|
|
|
|
option('manual',
|
|
type : 'boolean',
|
|
value : true,
|
|
yield : true,
|
|
description : 'Build SPICE manual')
|
|
|
|
option('generate-code',
|
|
type : 'combo',
|
|
choices : ['all', 'server', 'client'],
|
|
description : 'Which code should be built')
|