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.
19 lines
483 B
Makefile
19 lines
483 B
Makefile
plugin_LTLIBRARIES = libgstdaala.la
|
|
|
|
noinst_HEADERS = gstdaalaenc.h \
|
|
gstdaaladec.h
|
|
|
|
libgstdaala_la_SOURCES = gstdaala.c \
|
|
gstdaalaenc.c \
|
|
gstdaaladec.c
|
|
|
|
libgstdaala_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(DAALA_CFLAGS)
|
|
libgstdaala_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgsttag-$(GST_API_VERSION) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(DAALA_LIBS)
|
|
libgstdaala_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|