mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
914d0e0ad5
Original commit message from CVS: * gst/videotestsrc/Makefile.am: * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type), (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate), (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps), (gst_videotestsrc_init), (gst_videotestsrc_event), (gst_videotestsrc_create), (gst_videotestsrc_start), (gst_videotestsrc_stop), (gst_videotestsrc_get_times), (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property), (gst_videotestsrc_get_property): * gst/videotestsrc/gstvideotestsrc.h: Make videotestsrc a pushsrc.
11 lines
362 B
Makefile
11 lines
362 B
Makefile
plugin_LTLIBRARIES = libgstvideotestsrc.la
|
|
|
|
libgstvideotestsrc_la_SOURCES = \
|
|
gstvideotestsrc.c \
|
|
videotestsrc.c
|
|
|
|
libgstvideotestsrc_la_CFLAGS = $(GST_CFLAGS) $(LIBOIL_CFLAGS)
|
|
libgstvideotestsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvideotestsrc_la_LIBADD = $(GST_LIBS) $(LIBOIL_LIBS) $(GST_BASE_LIBS)
|
|
|
|
noinst_HEADERS = gstvideotestsrc.h videotestsrc.h
|