mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
34 lines
741 B
Makefile
34 lines
741 B
Makefile
plugin_LTLIBRARIES = libgstdtls.la
|
|
|
|
libgstdtls_la_SOURCES = \
|
|
plugin.c \
|
|
gstdtlsdec.c \
|
|
gstdtlsenc.c \
|
|
gstdtlssrtpdemux.c \
|
|
gstdtlssrtpbin.c \
|
|
gstdtlssrtpdec.c \
|
|
gstdtlssrtpenc.c \
|
|
gstdtlsagent.c \
|
|
gstdtlsconnection.c \
|
|
gstdtlscertificate.c
|
|
|
|
libgstdtls_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(DTLS_CFLAGS)
|
|
|
|
libgstdtls_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(DTLS_LIBS)
|
|
libgstdtls_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstdtlsdec.h \
|
|
gstdtlsenc.h \
|
|
gstdtlssrtpdemux.h \
|
|
gstdtlssrtpbin.h \
|
|
gstdtlssrtpdec.h \
|
|
gstdtlssrtpenc.h \
|
|
gstdtlsagent.h \
|
|
gstdtlsconnection.h \
|
|
gstdtlscertificate.h
|
|
|