mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
979907144a
Ship meson build files in tarballs, so people who use tarballs in their builds can start playing with meson already.
28 lines
559 B
Meson
28 lines
559 B
Meson
mxf_sources = [
|
|
'mxf.c',
|
|
'mxful.c',
|
|
'mxftypes.c',
|
|
'mxfmetadata.c',
|
|
'mxfessence.c',
|
|
'mxfquark.c',
|
|
'mxfmux.c',
|
|
'mxfdemux.c',
|
|
'mxfaes-bwf.c',
|
|
'mxfmpeg.c',
|
|
'mxfdv-dif.c',
|
|
'mxfalaw.c',
|
|
'mxfjpeg2000.c',
|
|
'mxfd10.c',
|
|
'mxfup.c',
|
|
'mxfvc3.c',
|
|
# 'mxfdms1.c',
|
|
]
|
|
|
|
gstmxf = library('gstmxf',
|
|
mxf_sources,
|
|
c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
|
|
include_directories : [configinc],
|
|
dependencies : [gstbadbase_dep, gstbase_dep, gstaudio_dep, gstvideo_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|