Skip to content
Snippets Groups Projects
Commit a50f9457 authored by Loïc's avatar Loïc Committed by Jean-Baptiste Kempf
Browse files

meson: rtp: split as static library

Counter-part of 49bdbee1
parent 68140314
No related branches found
No related tags found
1 merge request!3954meson: rtp: split as static library
Pipeline #366317 passed with stage
in 16 minutes and 31 seconds
rtp_lib = static_library('rtp',
files('rtpfmt.c', 'session.c', 'rtp.h'),
include_directories: [vlc_include_dirs],
install: false,
pic: true)
if libgcrypt_dep.found()
srtp_lib = static_library('srtp',
files('srtp.c', 'srtp.h'),
......@@ -14,17 +20,15 @@ vlc_modules += {
'sources':
files(
'input.c',
'session.c',
'sdp.c',
'sdp.h',
'rtpfmt.c',
'datagram.c',
'vlc_dtls.h',
'rtp.c',
'rtp.h',
),
'dependencies': [socket_libs],
'link_with': srtp_lib,
'link_with': [rtp_lib, srtp_lib],
'c_args': srtp_rtp_c_args,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment