mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
8e6c6266d7
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
29 lines
622 B
Makefile
29 lines
622 B
Makefile
plugin_LTLIBRARIES = libgstpango.la
|
|
|
|
noinst_HEADERS = \
|
|
gstbasetextoverlay.h \
|
|
gstclockoverlay.h \
|
|
gsttextoverlay.h \
|
|
gsttextrender.h \
|
|
gsttimeoverlay.h
|
|
|
|
libgstpango_la_SOURCES = \
|
|
gstbasetextoverlay.c \
|
|
gstclockoverlay.c \
|
|
gsttextoverlay.c \
|
|
gsttextrender.c \
|
|
gsttimeoverlay.c
|
|
|
|
libgstpango_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(PANGO_CFLAGS)
|
|
libgstpango_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_API_VERSION).la \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(LIBM) \
|
|
$(PANGO_LIBS)
|
|
libgstpango_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|