mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
As hsphfpd is a prototype and its API subject to change, this backend is disable by default. This skeleton connects to hsphfpd daemon and list the managed devices.
29 lines
702 B
Meson
29 lines
702 B
Meson
|
|
bluez5_sources = ['plugin.c',
|
|
'a2dp-codecs.c',
|
|
'a2dp-sink.c',
|
|
'a2dp-source.c',
|
|
'sco-sink.c',
|
|
'sco-source.c',
|
|
'bluez5-device.c',
|
|
'bluez5-dbus.c']
|
|
|
|
if get_option('bluez5-backend-native')
|
|
bluez5_sources += ['backend-hsp-native.c']
|
|
endif
|
|
|
|
if get_option('bluez5-backend-ofono')
|
|
bluez5_sources += ['backend-ofono.c']
|
|
endif
|
|
|
|
if get_option('bluez5-backend-hsphfpd')
|
|
bluez5_sources += ['backend-hsphfpd.c']
|
|
endif
|
|
|
|
bluez5lib = shared_library('spa-bluez5',
|
|
bluez5_sources,
|
|
include_directories : [ spa_inc, configinc ],
|
|
c_args : [ '-D_GNU_SOURCE' ],
|
|
dependencies : [ dbus_dep, sbc_dep, bluez_dep ],
|
|
install : true,
|
|
install_dir : join_paths(spa_plugindir, 'bluez5'))
|