mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
e9f924910c
git-svn-id: svn://svn.wobow.com/GStreamer_playground/gst-plugins-gl@508 93df14bb-0f41-7a43-8087-d3e2a2f0e464
26 lines
717 B
Makefile
26 lines
717 B
Makefile
|
|
lib_LTLIBRARIES = libgstgl-@GST_MAJORMINOR@.la
|
|
|
|
libgstgl_@GST_MAJORMINOR@_la_SOURCES = \
|
|
gstgldisplay.c \
|
|
gstglbuffer.c \
|
|
gstglfilter.c
|
|
|
|
libgstgl_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/gl
|
|
libgstgl_@GST_MAJORMINOR@include_HEADERS = \
|
|
gstgldisplay.h \
|
|
gstglbuffer.h \
|
|
gstglfilter.h
|
|
|
|
libgstgl_@GST_MAJORMINOR@_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
|
$(X_LIBS) $(GL_LIBS)
|
|
|
|
libgstgl_@GST_MAJORMINOR@_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-I$(top_srcdir)/gst-libs/gst/freeglut
|
|
|
|
libgstgl_@GST_MAJORMINOR@_la_LDFLAGS = \
|
|
$(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
|