meson: Enable raop-sink module, add raop lib, add openssl dependency

Signed-off-by: Arnaud Rebillout <arnaud.rebillout@collabora.com>
This commit is contained in:
Arnaud Rebillout 2018-09-20 17:05:06 +07:00 committed by Arun Raghavan
parent 83b6903849
commit 4c9b6370d1
4 changed files with 40 additions and 2 deletions

View file

@ -0,0 +1,24 @@
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
)