mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-03-25 09:07:06 -04:00
30 lines
770 B
Meson
30 lines
770 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',
|
|
]
|
|
|
|
# FIXME: meson doesn't support multiple RPATH arguments currently
|
|
rpath_dirs = join_paths(privlibdir) + ':' + join_paths(modlibexecdir)
|
|
|
|
libraop = shared_library('raop',
|
|
libraop_sources,
|
|
libraop_headers,
|
|
c_args : [pa_c_args, server_c_args],
|
|
link_args : [nodelete_link_args],
|
|
include_directories : [configinc, topinc],
|
|
dependencies : [libpulse_dep, libpulsecommon_dep, libpulsecore_dep, librtp_dep, libm_dep, openssl_dep, libintl_dep],
|
|
install : true,
|
|
install_rpath : rpath_dirs,
|
|
install_dir : modlibexecdir,
|
|
)
|