mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
13 lines
485 B
Makefile
13 lines
485 B
Makefile
noinst_LTLIBRARIES = libgstpyramidsegment.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstpyramidsegment_la_SOURCES = gstpyramidsegment.c
|
|
|
|
# flags used to compile this pyramidsegment
|
|
# add other _CFLAGS and _LIBS as needed
|
|
libgstpyramidsegment_la_CFLAGS = $(GST_CFLAGS) $(OPENCV_CFLAGS)
|
|
libgstpyramidsegment_la_LIBADD = $(GST_LIBS) $(OPENCV_LIBS)
|
|
libgstpyramidsegment_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = gstpyramidsegment.h
|