gstreamer/subprojects/gst-plugins-good/gst/isomp4/meson.build
Xavier Claessens 3d8372cc50 devenv: Add some missing GStreamer specific env variables
This should make "meson devenv" closer to what "gst-env.py" sets.

- GST_VALIDATE_SCENARIOS_PATH
- GST_VALIDATE_APPS_DIR
- GST_OMX_CONFIG_DIR
- GST_ENCODING_TARGET_PATH
- GST_PRESET_PATH
- GST_PLUGIN_SCANNER
- GST_PTP_HELPER
- _GI_OVERRIDES_PATH

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1768>
2022-02-25 20:35:26 +00:00

40 lines
985 B
Meson

mp4_sources = [
'isomp4-plugin.c',
'gstisomp4element.c',
'gstrtpxqtdepay.c',
'qtdemux.c',
'qtdemux_types.c',
'qtdemux_dump.c',
'qtdemux_lang.c',
'qtdemux_tags.c',
'qtdemux_tree.c',
'qtdemux-webvtt.c',
'gstisoff.c',
'gstqtmux.c',
'gstqtmoovrecover.c',
'atoms.c',
'atomsrecovery.c',
'descriptors.c',
'properties.c',
'gstqtmuxmap.c'
]
gstisomp4 = library('gstisomp4',
mp4_sources,
c_args : gst_plugins_good_args,
link_args : noseh_link_args,
include_directories : [configinc, libsinc],
dependencies : [gst_dep, gstriff_dep, gstaudio_dep, gstvideo_dep,
gstrtp_dep, gsttag_dep, gstpbutils_dep, zlib_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstisomp4, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstisomp4]
install_data(sources: 'GstQTMux.prs', install_dir: presetdir)
env = environment()
env.prepend('GST_PRESET_PATH', meson.current_source_dir())
meson.add_devenv(env)