mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
gl: deploy egl headers in gst/gl/egl instead of gst/gl
https://bugzilla.gnome.org/show_bug.cgi?id=703343
This commit is contained in:
parent
f55e8b3ea8
commit
cb9521ab05
2 changed files with 29 additions and 5 deletions
|
@ -86,11 +86,8 @@ libgstgl_@GST_API_VERSION@_la_LIBADD += android/libgstgl-android.la
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if USE_EGL
|
if USE_EGL
|
||||||
libgstgl_@GST_API_VERSION@_la_SOURCES += egl/gstglcontext_egl.c \
|
SUBDIRS += egl
|
||||||
egl/gstgldisplay_egl.c
|
libgstgl_@GST_API_VERSION@_la_LIBADD += egl/libgstgl-egl.la
|
||||||
libgstgl_@GST_API_VERSION@_la_LIBADD += $(top_builddir)/gst-libs/gst/egl/libgstegl-$(GST_API_VERSION).la
|
|
||||||
libgstgl_@GST_API_VERSION@include_HEADERS += egl/gstgldisplay_egl.h
|
|
||||||
noinst_HEADERS += egl/gstglcontext_egl.h
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
nodist_libgstgl_@GST_API_VERSION@include_HEADERS = \
|
nodist_libgstgl_@GST_API_VERSION@include_HEADERS = \
|
||||||
|
|
27
gst-libs/gst/gl/egl/Makefile.am
Normal file
27
gst-libs/gst/gl/egl/Makefile.am
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
|
noinst_LTLIBRARIES = libgstgl-egl.la
|
||||||
|
|
||||||
|
libgstgl_egl_la_SOURCES = \
|
||||||
|
gstgldisplay_egl.c \
|
||||||
|
gstglcontext_egl.c
|
||||||
|
|
||||||
|
noinst_HEADERS = \
|
||||||
|
gstglcontext_egl.h
|
||||||
|
|
||||||
|
libgstgl_eglincludedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/gl/egl
|
||||||
|
libgstgl_eglinclude_HEADERS = \
|
||||||
|
gstgldisplay_egl.h
|
||||||
|
|
||||||
|
libgstgl_egl_la_LIBADD = $(top_builddir)/gst-libs/gst/egl/libgstegl-$(GST_API_VERSION).la
|
||||||
|
|
||||||
|
libgstgl_egl_la_CFLAGS = \
|
||||||
|
-I$(top_srcdir)/gst-libs \
|
||||||
|
$(GL_CFLAGS) \
|
||||||
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
|
$(GST_BASE_CFLAGS) \
|
||||||
|
$(GST_CFLAGS)
|
||||||
|
|
||||||
|
libgstgl_egl_la_LDFLAGS = \
|
||||||
|
$(GST_LIB_LDFLAGS) \
|
||||||
|
$(GST_ALL_LDFLAGS)
|
Loading…
Reference in a new issue