mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
77fe3e6a07
Port facedetect to use GstOpencvVideoFilter as the base class to inherit all the goodness that GstBaseTransform/GstVideoFilter already handles.
17 lines
572 B
Makefile
17 lines
572 B
Makefile
# plugindir is set in configure
|
|
|
|
noinst_LTLIBRARIES = libgstfacedetect.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstfacedetect_la_SOURCES = gstfacedetect.c
|
|
|
|
# flags used to compile this facedetect
|
|
# add other _CFLAGS and _LIBS as needed
|
|
libgstfacedetect_la_CFLAGS = $(GST_CFLAGS) $(OPENCV_CFLAGS) \
|
|
$(GSTPB_BASE_CFLAGS) -I..
|
|
libgstfacedetect_la_LIBADD = $(GST_LIBS) $(OPENCV_LIBS) $(GSTPB_BASE_LIBS) \
|
|
-lgstvideo-$(GST_MAJORMINOR)
|
|
libgstfacedetect_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = gstfacedetect.h
|