mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
15 lines
402 B
Meson
15 lines
402 B
Meson
spa_avb_sources = ['avb.c',
|
|
'avb.h',
|
|
'avb-pcm-sink.c',
|
|
'avb-pcm-source.c',
|
|
'avb-pcm.c' ]
|
|
|
|
spa_avb = shared_library(
|
|
'spa-avb',
|
|
[ spa_avb_sources ],
|
|
c_args : acp_c_args,
|
|
include_directories : [configinc],
|
|
dependencies : [ spa_dep, mathlib, epoll_shim_dep, libavtp_dep ],
|
|
install : true,
|
|
install_dir : spa_plugindir / 'avb'
|
|
)
|