mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
546bc7dbc1
Original commit message from CVS: * ext/annodex/Makefile.am: Fix CFLAGS/LIBS. * ext/cdio/gstcdiocddasrc.c: * ext/libpng/gstpngdec.c: (gst_pngdec_task): Include stdlib * ext/cairo/Makefile.am: * gst/videofilter/Makefile.am: * tests/examples/level/Makefile.am: Use $(LIBM) instead of -lm
17 lines
415 B
Makefile
17 lines
415 B
Makefile
plugin_LTLIBRARIES = libgstcairo.la
|
|
|
|
noinst_HEADERS = gsttimeoverlay.h gsttextoverlay.h
|
|
|
|
libgstcairo_la_SOURCES = \
|
|
gstcairo.c \
|
|
gsttimeoverlay.c \
|
|
gsttextoverlay.c
|
|
|
|
libgstcairo_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) $(CAIRO_CFLAGS)
|
|
libgstcairo_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) $(CAIRO_LIBS) $(LIBM)
|
|
libgstcairo_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|