mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
initial import of the spider autoplugger - not to self: Makefile changes must be committed, too
Original commit message from CVS: initial import of the spider autoplugger - not to self: Makefile changes must be committed, too
This commit is contained in:
parent
475a7acaa3
commit
b0e9344c56
1 changed files with 15 additions and 3 deletions
|
@ -4,7 +4,8 @@ plugin_LTLIBRARIES = \
|
||||||
libgststaticautoplug.la \
|
libgststaticautoplug.la \
|
||||||
libgststaticautoplugrender.la \
|
libgststaticautoplugrender.la \
|
||||||
libgstautoplugcache.la \
|
libgstautoplugcache.la \
|
||||||
libgstautoplugger.la
|
libgstautoplugger.la \
|
||||||
|
libgstspider.la
|
||||||
|
|
||||||
libgststaticautoplug_la_SOURCES = gststaticautoplug.c
|
libgststaticautoplug_la_SOURCES = gststaticautoplug.c
|
||||||
libgststaticautoplug_la_CFLAGS = $(GST_CFLAGS)
|
libgststaticautoplug_la_CFLAGS = $(GST_CFLAGS)
|
||||||
|
@ -26,9 +27,20 @@ libgstautoplugger_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstautoplugger_la_LIBADD = $(GST_LIBS)
|
libgstautoplugger_la_LIBADD = $(GST_LIBS)
|
||||||
libgstautoplugger_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
libgstautoplugger_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
||||||
|
|
||||||
noinst_HEADERS = gststaticautoplug.h gststaticautoplugrender.h
|
libgstspider_la_SOURCES = gstspider.c gstspideridentity.c gstsearchfuncs.c
|
||||||
|
libgstspider_la_CFLAGS = $(GST_CFLAGS)
|
||||||
|
libgstspider_la_LIBADD = $(GST_LIBS)
|
||||||
|
libgstspider_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
||||||
|
|
||||||
noinst_PROGRAMS = autoplugtest
|
noinst_HEADERS = gststaticautoplug.h gststaticautoplugrender.h \
|
||||||
|
gstspider.h gstspideridentity.h gstsearchfuncs.h
|
||||||
|
|
||||||
|
noinst_PROGRAMS = autoplugtest spidertest
|
||||||
|
|
||||||
autoplugtest_CFLAGS = $(GST_CFLAGS)
|
autoplugtest_CFLAGS = $(GST_CFLAGS)
|
||||||
autoplugtest_LDADD = $(GST_LIBS)
|
autoplugtest_LDADD = $(GST_LIBS)
|
||||||
|
|
||||||
|
spidertest_SOURCES = spidertest.c
|
||||||
|
spidertest_CFLAGS = $(GST_CFLAGS)
|
||||||
|
spidertest_LDADD = $(GST_LIBS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue