mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-07 04:37:56 +00:00
Make it compatible with spice-common. Signed-off-by: Eduardo Lima (Etrunko) <etrunko@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
52 lines
1.1 KiB
Meson
52 lines
1.1 KiB
Meson
option('gstreamer',
|
|
type : 'combo',
|
|
choices : ['1.0', '0.10', 'no'],
|
|
description : 'Enable gstreamer support')
|
|
|
|
option('lz4',
|
|
type : 'boolean',
|
|
value : true,
|
|
description: 'Enable lz4 compression support')
|
|
|
|
option('sasl',
|
|
type : 'boolean',
|
|
value : true,
|
|
description : 'Use cyrus SASL authentication')
|
|
|
|
option('celt051',
|
|
type : 'feature',
|
|
description: 'Enable celt051 audio codec')
|
|
|
|
option('opus',
|
|
type : 'feature',
|
|
description: 'Enable Opus audio codec')
|
|
|
|
option('smartcard',
|
|
type : 'feature',
|
|
description : 'Enable smartcard support')
|
|
|
|
option('alignment-checks',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable runtime checks for cast alignment')
|
|
|
|
option('extra-checks',
|
|
type : 'boolean',
|
|
value: false,
|
|
description : 'Enable extra checks on code')
|
|
|
|
option('statistics',
|
|
type : 'boolean',
|
|
value: false,
|
|
description : 'Build SPICE with statistic code enabled')
|
|
|
|
option('manual',
|
|
type : 'boolean',
|
|
value : true,
|
|
description : 'Build SPICE manual')
|
|
|
|
option('recorder',
|
|
type : 'boolean',
|
|
value : false,
|
|
description: 'Enable recorder instrumentation')
|