mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
4a906e412e
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
29 lines
571 B
Makefile
29 lines
571 B
Makefile
plugin_LTLIBRARIES = libgstnle.la
|
|
|
|
libgstnle_la_SOURCES = gstnle.c \
|
|
nleobject.c \
|
|
nlecomposition.c \
|
|
nleghostpad.c \
|
|
nleoperation.c \
|
|
nlesource.c \
|
|
nleurisource.c
|
|
|
|
libgstnle_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-I$(top_srcdir)
|
|
|
|
libgstnle_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
|
|
|
libgstnle_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
nle.h \
|
|
nleobject.h \
|
|
nlecomposition.h \
|
|
nletypes.h \
|
|
nleghostpad.h \
|
|
nleoperation.h \
|
|
nlesource.h \
|
|
nletypes.h \
|
|
nleurisource.h
|