mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
28 lines
747 B
Meson
28 lines
747 B
Meson
dtls_sources = [
|
|
'gstdtlsagent.c',
|
|
'gstdtlscertificate.c',
|
|
'gstdtlsconnection.c',
|
|
'gstdtlsdec.c',
|
|
'gstdtlsenc.c',
|
|
'gstdtlssrtpbin.c',
|
|
'gstdtlssrtpdec.c',
|
|
'gstdtlssrtpdemux.c',
|
|
'gstdtlssrtpenc.c',
|
|
'plugin.c',
|
|
'gstdtlselement.c',
|
|
]
|
|
|
|
openssl_dep = dependency('openssl', version : '>= 1.0.1', required : get_option('dtls'))
|
|
libcrypto_dep = dependency('libcrypto', required : get_option('dtls'))
|
|
|
|
if openssl_dep.found() and libcrypto_dep.found()
|
|
gstdtls = library('gstdtls',
|
|
dtls_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gst_dep, libcrypto_dep, openssl_dep] + winsock2,
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstdtls]
|
|
endif
|