mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
3c53d0f38c
Found via the Jenkins CI: FAILED: subprojects/gst-plugins-good/gst/multifile/gstmultifile@sha/gstsplitmuxsink.c.o [...] In file included from ../subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsink.h:24:0, from ../subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsink.c:59: ../subprojects/gst-plugins-base/gst-libs/gst/pbutils/pbutils.h:30:43: fatal error: gst/pbutils/pbutils-enumtypes.h: No such file or directory #include <gst/pbutils/pbutils-enumtypes.h> ^ compilation terminated. https://ci.gstreamer.net/job/GStreamer-master-meson/263/console
37 lines
895 B
Meson
37 lines
895 B
Meson
multifile_sources = [
|
|
'gstmultifilesink.c',
|
|
'gstmultifilesrc.c',
|
|
'gstmultifile.c',
|
|
'gstsplitfilesrc.c',
|
|
'gstsplitmuxpartreader.c',
|
|
'gstsplitmuxsink.c',
|
|
'gstsplitmuxsrc.c',
|
|
'gstsplitutils.c',
|
|
'patternspec.c',
|
|
]
|
|
|
|
gstmultifile = library('gstmultifile',
|
|
multifile_sources,
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstvideo_dep, gstbase_dep,
|
|
gstpbutils_dep, gio_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
|
|
test_splitmuxpartreader_sources = [
|
|
'test-splitmuxpartreader.c',
|
|
'gstsplitmuxpartreader.c',
|
|
'gstsplitmuxsrc.c',
|
|
'gstsplitutils.c',
|
|
'patternspec.c',
|
|
]
|
|
|
|
executable('test-splitmuxpartreader',
|
|
test_splitmuxpartreader_sources,
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gsttag_dep, gstbase_dep],
|
|
install : false,
|
|
)
|