mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
27 lines
802 B
Makefile
27 lines
802 B
Makefile
|
|
plugin_LTLIBRARIES = libgstopengl.la
|
|
|
|
AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
AM_LIBS = $(GST_BASE_LIBS)
|
|
|
|
libgstopengl_la_SOURCES = \
|
|
gstopengl.c \
|
|
glimagesink.c \
|
|
glimagesink.h \
|
|
gstglgraphicmaker.c \
|
|
gstglgraphicmaker.h \
|
|
gstglvideomaker.c \
|
|
gstglvideomaker.h
|
|
|
|
# check order of CFLAGS and LIBS, shouldn't the order be the other way around
|
|
# (like in AM_CFLAGS)?
|
|
libgstopengl_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GL_CFLAGS) \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_srcdir)/gst-libs/gst/gl
|
|
libgstopengl_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_MAJORMINOR).la \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-$(GST_MAJORMINOR)
|
|
libgstopengl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|