mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
meson: gl: don't pass generated xdg shell header and source file to g-i
They're private, g-i doesn't need to know about them. Avoids lots of spammy g-i warnings.
This commit is contained in:
parent
413b7168da
commit
bb48e326ac
1 changed files with 5 additions and 1 deletions
|
@ -35,6 +35,8 @@ gl_sources = [
|
||||||
'gstglwindow.c',
|
'gstglwindow.c',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
gl_priv_sources = []
|
||||||
|
|
||||||
gir_gl_headers = [
|
gir_gl_headers = [
|
||||||
'gl.h',
|
'gl.h',
|
||||||
'gl-prelude.h',
|
'gl-prelude.h',
|
||||||
|
@ -551,6 +553,8 @@ if need_win_wayland != 'no'
|
||||||
'wayland/gstgldisplay_wayland.c',
|
'wayland/gstgldisplay_wayland.c',
|
||||||
'wayland/gstglwindow_wayland_egl.c',
|
'wayland/gstglwindow_wayland_egl.c',
|
||||||
'wayland/wayland_event_source.c',
|
'wayland/wayland_event_source.c',
|
||||||
|
]
|
||||||
|
gl_priv_sources += [
|
||||||
xdg_shell_header,
|
xdg_shell_header,
|
||||||
xdg_shell_code,
|
xdg_shell_code,
|
||||||
]
|
]
|
||||||
|
@ -908,7 +912,7 @@ if build_gstgl
|
||||||
gen_sources = [gl_enumtypes_h]
|
gen_sources = [gl_enumtypes_h]
|
||||||
|
|
||||||
gstgl = library('gstgl-' + api_version,
|
gstgl = library('gstgl-' + api_version,
|
||||||
gl_sources, gl_enumtypes_c, gl_enumtypes_h,
|
gl_sources, gl_priv_sources, gl_enumtypes_c, gl_enumtypes_h,
|
||||||
c_args : gst_plugins_base_args + gl_cpp_args + ['-DBUILDING_GST_GL'],
|
c_args : gst_plugins_base_args + gl_cpp_args + ['-DBUILDING_GST_GL'],
|
||||||
objc_args : gst_plugins_base_args + gl_cpp_args + gl_objc_args + ['-DBUILDING_GST_GL'],
|
objc_args : gst_plugins_base_args + gl_cpp_args + gl_objc_args + ['-DBUILDING_GST_GL'],
|
||||||
include_directories : [configinc, libsinc, gl_includes],
|
include_directories : [configinc, libsinc, gl_includes],
|
||||||
|
|
Loading…
Reference in a new issue