mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
32 lines
770 B
Meson
32 lines
770 B
Meson
libbluez5_util_sources = [
|
|
'a2dp-codec-sbc.c',
|
|
'a2dp-codec-util.c',
|
|
'bluez5-util.c',
|
|
]
|
|
|
|
libbluez5_util_headers = [
|
|
'a2dp-codec-api.h',
|
|
'a2dp-codecs.h',
|
|
'a2dp-codec-util.h',
|
|
'bluez5-util.h',
|
|
'rtp.h',
|
|
]
|
|
|
|
if get_option('bluez5-native-headset')
|
|
libbluez5_util_sources += [ 'backend-native.c' ]
|
|
endif
|
|
|
|
if get_option('bluez5-ofono-headset')
|
|
libbluez5_util_sources += [ 'backend-ofono.c' ]
|
|
endif
|
|
|
|
libbluez5_util = shared_library('bluez5-util',
|
|
libbluez5_util_sources,
|
|
libbluez5_util_headers,
|
|
c_args : [pa_c_args, server_c_args],
|
|
link_args : [nodelete_link_args],
|
|
include_directories : [configinc, topinc],
|
|
dependencies : [libpulse_dep, libpulsecommon_dep, libpulsecore_dep, dbus_dep, sbc_dep],
|
|
install : true,
|
|
install_dir : modlibexecdir,
|
|
)
|