2018-01-11 10:23:37 +01:00
|
|
|
|
|
|
|
|
bluez5_sources = ['plugin.c',
|
2019-05-16 13:18:45 +02:00
|
|
|
'a2dp-codecs.c',
|
2018-01-11 10:23:37 +01:00
|
|
|
'a2dp-sink.c',
|
2019-04-19 13:26:07 -04:00
|
|
|
'a2dp-source.c',
|
2018-11-26 12:18:53 +01:00
|
|
|
'bluez5-device.c',
|
2018-01-11 10:23:37 +01:00
|
|
|
'bluez5-monitor.c']
|
|
|
|
|
|
|
|
|
|
bluez5lib = shared_library('spa-bluez5',
|
|
|
|
|
bluez5_sources,
|
2018-08-14 12:33:53 +02:00
|
|
|
include_directories : [ spa_inc ],
|
2019-01-08 17:35:36 +01:00
|
|
|
c_args : [ '-D_GNU_SOURCE' ],
|
2018-11-27 17:19:32 +01:00
|
|
|
dependencies : [ dbus_dep, sbc_dep, bluez_dep ],
|
2018-01-11 10:23:37 +01:00
|
|
|
install : true,
|
|
|
|
|
install_dir : '@0@/spa/bluez5'.format(get_option('libdir')))
|