mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
21 lines
540 B
Makefile
21 lines
540 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)
|
||
|
libgstdaala_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||
|
|