mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
f6efb87a78
/usr/bin/ld: .libs/libgstges_la-gesdemux.o: in function `ges_timeline_new_from_uri_from_main_thread': ./plugins/ges/gesdemux.c:279: undefined reference to `gst_discoverer_new' /usr/bin/ld: ./plugins/ges/gesdemux.c:288: undefined reference to `gst_discoverer_start'
24 lines
477 B
Makefile
24 lines
477 B
Makefile
plugin_LTLIBRARIES = libgstges.la
|
|
|
|
libgstges_la_SOURCES = \
|
|
gesplugin.c \
|
|
gessrc.c \
|
|
gesdemux.c
|
|
|
|
libgstges_la_CFLAGS = -I$(top_srcdir) \
|
|
$(GST_PBUTILS_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
|
|
libgstges_la_LIBADD = \
|
|
$(top_builddir)/ges/libges-@GST_API_VERSION@.la \
|
|
$(GST_PBUTILS_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
|
|
|
libgstges_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gesdemux.h \
|
|
gessrc.h
|
|
|