2018-09-20 17:05:06 +07:00
|
|
|
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',
|
|
|
|
|
]
|
|
|
|
|
|
2019-08-03 02:41:55 +05:30
|
|
|
# FIXME: meson doesn't support multiple RPATH arguments currently
|
|
|
|
|
rpath_dirs = join_paths(privlibdir) + ':' + join_paths(modlibexecdir)
|
|
|
|
|
|
2018-11-26 15:36:13 +07:00
|
|
|
libraop = shared_library('raop',
|
2018-09-20 17:05:06 +07:00
|
|
|
libraop_sources,
|
|
|
|
|
libraop_headers,
|
|
|
|
|
c_args : [pa_c_args, server_c_args],
|
2019-08-03 01:52:09 +05:30
|
|
|
link_args : [nodelete_link_args],
|
2018-09-20 17:05:06 +07:00
|
|
|
include_directories : [configinc, topinc],
|
2020-10-20 14:36:20 -04:00
|
|
|
dependencies : [libpulse_dep, libpulsecommon_dep, libpulsecore_dep, librtp_dep, libm_dep, openssl_dep, libintl_dep],
|
2018-10-13 11:50:03 +05:30
|
|
|
install : true,
|
2019-08-03 02:41:55 +05:30
|
|
|
install_rpath : rpath_dirs,
|
2018-10-13 11:50:03 +05:30
|
|
|
install_dir : modlibexecdir,
|
2018-09-20 17:05:06 +07:00
|
|
|
)
|