mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
25 lines
515 B
Meson
25 lines
515 B
Meson
|
|
libraop_sources = [
|
||
|
|
'raop-client.c',
|
||
|
|
'raop-crypto.c',
|
||
|
|
'raop-packet-buffer.c',
|
||
|
|
'raop-sink.c',
|
||
|
|
'raop-util.c',
|
||
|
|
]
|
||
|
|
|
||
|
|
libraop_headers = [
|
||
|
|
'raop-client.h',
|
||
|
|
'raop-crypto.h',
|
||
|
|
'raop-packet-buffer.h',
|
||
|
|
'raop-sink.h',
|
||
|
|
'raop-util.h',
|
||
|
|
]
|
||
|
|
|
||
|
|
libraop = shared_library('libraop',
|
||
|
|
libraop_sources,
|
||
|
|
libraop_headers,
|
||
|
|
c_args : [pa_c_args, server_c_args],
|
||
|
|
include_directories : [configinc, topinc],
|
||
|
|
dependencies : [libpulse_dep, libpulsecommon_dep, libpulsecore_dep, librtp_dep, openssl_dep],
|
||
|
|
install : true
|
||
|
|
)
|