mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
16 lines
486 B
Makefile
16 lines
486 B
Makefile
|
# plugindir is set in configure
|
||
|
|
||
|
plugin_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)
|
||
|
libgstfacedetect_la_LIBADD = $(GST_LIBS) $(OPENCV_LIBS)
|
||
|
libgstfacedetect_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||
|
|
||
|
# headers we need but don't want installed
|
||
|
noinst_HEADERS = gstfacedetect.h
|