mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
27 lines
760 B
Makefile
27 lines
760 B
Makefile
|
plugin_LTLIBRARIES = libgstfieldanalysis.la
|
||
|
|
||
|
ORC_SOURCE=gstfieldanalysisorc
|
||
|
include $(top_srcdir)/common/orc.mak
|
||
|
|
||
|
libgstfieldanalysis_la_SOURCES = gstfieldanalysis.c gstfieldanalysis.h
|
||
|
nodist_libgstfieldanalysis_la_SOURCES = $(ORC_NODIST_SOURCES)
|
||
|
|
||
|
libgstfieldanalysis_la_CFLAGS = \
|
||
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
||
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||
|
$(GST_BASE_CFLAGS) \
|
||
|
$(GST_CFLAGS) \
|
||
|
$(ORC_CFLAGS)
|
||
|
|
||
|
libgstfieldanalysis_la_LIBADD = \
|
||
|
$(top_builddir)/gst-libs/gst/video/libgstbasevideo-@GST_MAJORMINOR@.la \
|
||
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ \
|
||
|
$(GST_BASE_LIBS) \
|
||
|
$(GST_LIBS) \
|
||
|
$(ORC_LIBS)
|
||
|
|
||
|
libgstfieldanalysis_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||
|
libgstfieldanalysis_la_LIBTOOLFLAGS = --tag=disable-static
|
||
|
|
||
|
noinst_HEADERS = gstfieldanalysis.h
|