mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 13:08:49 +00:00
ce0e8ab697
The base class adds a 'object' property to hold the monitored object, it can only be set on construction. Also the constructor now automatically calls the element set up
35 lines
1,002 B
Makefile
35 lines
1,002 B
Makefile
public_headers = \
|
|
qa.h
|
|
|
|
c_sources = \
|
|
gst-qa-runner.c \
|
|
gst-qa-monitor.c \
|
|
gst-qa-element-monitor.c \
|
|
gst-qa-bin-monitor.c \
|
|
gst-qa-pad-monitor.c \
|
|
gst-qa-monitor-factory.c
|
|
|
|
noinst_HEADERS =
|
|
|
|
lib_LTLIBRARIES = \
|
|
libgstqa-@GST_API_VERSION@.la
|
|
|
|
libgstqa_@GST_API_VERSION@_la_SOURCES = \
|
|
$(c_sources)
|
|
|
|
libgstqa_@GST_API_VERSION@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstqa_@GST_API_VERSION@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
libgstqa_@GST_API_VERSION@_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
|
|
libgstqa_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/qa
|
|
libgstqa_@GST_API_VERSION@include_HEADERS = $(public_headers)
|
|
|
|
bin_PROGRAMS = gst-qa-@GST_API_VERSION@
|
|
AM_CFLAGS = -I$(top_srcdir) $(GST_PBUTILS_CFLAGS) $(GST_CFLAGS)
|
|
LDADD = $(top_builddir)/gst/qa/libgstqa-@GST_API_VERSION@.la $(GST_PBUTILS_LIBS) $(GST_LIBS)
|
|
|
|
gst_qa_@GST_API_VERSION@_SOURCES = gst-qa.c
|
|
|
|
CLEANFILES =
|