mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
b194c94268
Original commit message from CVS: * gst/videotestsrc/Makefile.am: * tests/check/Makefile.am: Make sure our checks and the videotestsrc plugin link against the local uninstalled gst libs and not any installed gst libs that might happen to exist as well. * tests/check/elements/adder.c: (message_received), (test_event_message_received), (test_play_twice_message_received): * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST): Fix compiler warnings when compiling against core with disabled debugging system.
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) $(GST_BASE_LIBS) $(LIBOIL_LIBS)
|
|
|
|
noinst_HEADERS = gstvideotestsrc.h videotestsrc.h
|