meson: Make sure devenv uses tools linked on gst-full

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2959>
This commit is contained in:
Xavier Claessens 2022-08-30 21:15:25 -04:00 committed by GStreamer Marge Bot
parent cbc6761199
commit fe40a73973

View file

@ -261,7 +261,14 @@ pathsep = host_machine.system() == 'windows' ? ';' : ':'
all_plugins_paths = pathsep.join(all_plugins_paths)
devenv = environment()
devenv.prepend('GST_PLUGIN_PATH', all_plugins_dirs)
if not building_full
devenv.prepend('GST_PLUGIN_PATH', all_plugins_dirs)
else
# Make sure the current build directory is first in PATH so we prefer tools
# built here that links on gst-full instead instead of those built in
# subprojects.
devenv.prepend('PATH', meson.current_build_dir())
endif
devenv.set('CURRENT_GST', meson.current_source_dir())
devenv.set('GST_VERSION', meson.project_version())
devenv.set('GST_ENV', 'gst-' + meson.project_version())