2016-08-12 15:51:45 +00:00
|
|
|
bluez_sources = [
|
|
|
|
'bluez-plugin.c',
|
2021-03-26 10:00:50 +00:00
|
|
|
'gstbluezelement.c',
|
2016-08-12 15:51:45 +00:00
|
|
|
'gsta2dpsink.c',
|
|
|
|
'gstavdtpsink.c',
|
|
|
|
'gstavdtpsrc.c',
|
2016-09-26 15:30:02 +00:00
|
|
|
'gstavdtputil.c',
|
|
|
|
'gstavrcputil.c',
|
2016-08-12 15:51:45 +00:00
|
|
|
]
|
|
|
|
|
2019-05-20 14:19:19 +00:00
|
|
|
if host_system == 'windows'
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
bluez_dep = dependency('bluez', version : '>= 5.0', required : get_option('bluez'))
|
2022-03-25 19:00:20 +00:00
|
|
|
gio_unix_dep = dependency('gio-unix-2.0', required : get_option('bluez'))
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
if bluez_dep.found() and gio_unix_dep.found()
|
2018-07-28 02:17:56 +00:00
|
|
|
bluez_ch = gnome.gdbus_codegen('bluez',
|
2018-07-27 13:29:23 +00:00
|
|
|
sources : 'org.bluez.xml',
|
|
|
|
interface_prefix : 'org.bluez',
|
|
|
|
namespace : 'Bluez')
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
gstbluez = library('gstbluez',
|
|
|
|
bluez_sources, bluez_ch,
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gstaudio_dep, gstrtp_dep, gstbase_dep, gio_unix_dep, bluez_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstbluez]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|