mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
24 lines
480 B
Makefile
24 lines
480 B
Makefile
plugin_LTLIBRARIES = libgstiqa.la
|
|
|
|
libgstiqa_la_SOURCES = \
|
|
iqa.c
|
|
|
|
libgstiqa_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
|
|
libgstiqa_la_CFLAGS += $(DSSIM_CFLAGS)
|
|
|
|
libgstiqa_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
|
|
|
libgstiqa_la_LIBADD += $(DSSIM_LIBS)
|
|
|
|
libgstiqa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
iqa.h
|
|
|