mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-01 22:58:47 -04:00
meson: Add the rtp module library
This is based on the existing libalsa-util library. Signed-off-by: Arnaud Rebillout <arnaud.rebillout@collabora.com>
This commit is contained in:
parent
aed8e9f417
commit
918af59268
2 changed files with 26 additions and 0 deletions
|
|
@ -1,3 +1,5 @@
|
|||
subdir('rtp')
|
||||
|
||||
# module name, sources, [headers, extra flags, extra deps, extra libs]
|
||||
all_modules = [
|
||||
[ 'module-allow-passthrough', 'module-allow-passthrough.c' ],
|
||||
|
|
|
|||
24
src/modules/rtp/meson.build
Normal file
24
src/modules/rtp/meson.build
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
librtp_sources = [
|
||||
'rtp.c',
|
||||
'sdp.c',
|
||||
'sap.c',
|
||||
'rtsp_client.c',
|
||||
'headerlist.c',
|
||||
]
|
||||
|
||||
librtp_headers = [
|
||||
'rtp.h',
|
||||
'sdp.h',
|
||||
'sap.h',
|
||||
'rtsp_client.h',
|
||||
'headerlist.h',
|
||||
]
|
||||
|
||||
librtp = shared_library('librtp',
|
||||
librtp_sources,
|
||||
librtp_headers,
|
||||
c_args : [pa_c_args, server_c_args],
|
||||
include_directories : [configinc, topinc],
|
||||
dependencies : [libpulse_dep, libpulsecommon_dep, libpulsecore_dep],
|
||||
install : true
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue