mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-13 20:06:35 +00:00
a6ed17c273
Occasionally, a clean build would fail like this: In file included from ../subprojects/gst-plugins-base/tests/examples/gl/gtk/gstgtk.c:24: ../subprojects/gst-plugins-base/gst-libs/gst/gl/gl.h:25:10: fatal error: gst/gl/gl-enumtypes.h: No such file or directory 25 | #include <gst/gl/gl-enumtypes.h> | ^~~~~~~~~~~~~~~~~~~~~~~ Add the missing dependency so that the headers are generated beforehand. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/855>
28 lines
765 B
Meson
28 lines
765 B
Meson
extra_args = []
|
|
if cc.has_argument ('-Wno-parentheses')
|
|
extra_args += '-Wno-parentheses'
|
|
endif
|
|
|
|
if host_system == 'darwin'
|
|
extra_c_args = ['-xobjective-c']
|
|
else
|
|
extra_c_args = []
|
|
endif
|
|
|
|
gstgtkhelper = static_library ('gstgtkhelper',
|
|
['gstgtk.c'],
|
|
c_args : gst_plugins_base_args + extra_c_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gst_base_dep, video_dep, gtk_dep, gstgl_dep],
|
|
install : false)
|
|
|
|
gstgtkhelper_dep = declare_dependency(link_with: gstgtkhelper,
|
|
compile_args : extra_args,
|
|
include_directories : include_directories('.'),
|
|
dependencies : [gst_base_dep, video_dep, gtk_dep, gstgl_dep])
|
|
|
|
subdir('filternovideooverlay')
|
|
subdir('filtervideooverlay')
|
|
subdir('fxtest')
|
|
subdir('switchvideooverlay')
|
|
subdir('3dvideo')
|