mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
caccdc1ee8
This doesn't detect the existence of libraries, which needs to be fixed.
34 lines
834 B
Makefile
34 lines
834 B
Makefile
|
|
lib_LTLIBRARIES = libgstgl-@GST_MAJORMINOR@.la
|
|
|
|
EXTRA_DIST = \
|
|
gstglwindow_x11.c \
|
|
gstglwindow_win32.c
|
|
|
|
libgstgl_@GST_MAJORMINOR@_la_SOURCES = \
|
|
gstglwindow_@GL_BACKEND@.c \
|
|
gstgldisplay.c \
|
|
gstglbuffer.c \
|
|
gstglfilter.c \
|
|
gstglshader.c
|
|
|
|
libgstgl_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/gl
|
|
libgstgl_@GST_MAJORMINOR@include_HEADERS = \
|
|
gstglwindow.h \
|
|
gstgldisplay.h \
|
|
gstglbuffer.h \
|
|
gstglfilter.h \
|
|
gstglshader.h
|
|
|
|
libgstgl_@GST_MAJORMINOR@_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
|
$(GL_LIBS)
|
|
|
|
libgstgl_@GST_MAJORMINOR@_la_CFLAGS = \
|
|
$(GL_CFLAGS) $(X_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
|
|
libgstgl_@GST_MAJORMINOR@_la_LDFLAGS = \
|
|
$(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
|