meson: Add 'feature' options to enable/disable bluetooth codecs

Fixes: #606
This commit is contained in:
Ivan 2021-03-15 00:14:23 +02:00
parent b07bfd0661
commit 4c9af21ec6
2 changed files with 16 additions and 4 deletions

View file

@ -90,6 +90,18 @@ option('bluez5-backend-hsphfpd',
description: 'Enable hsphfpd backend in bluez5 spa plugin',
type: 'feature',
value: 'auto')
option('bluez5-codec-aptx',
description: 'Enable AptX Qualcomm proprietary codec implementation',
type: 'feature',
value: 'auto')
option('bluez5-codec-ldac',
description: 'Enable LDAC Sony proprietary codec implementation',
type: 'feature',
value: 'auto')
option('bluez5-codec-aac',
description: 'Enable Fraunhofer FDK AAC open source codec implementation',
type: 'feature',
value: 'auto')
option('control',
description: 'Enable control spa plugin integration',
type: 'feature',