mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
devenv: Prepend to GST_PLUGIN_PATH
Use may have their own GST_PLUGIN_PATH, or a custom user subproject could have their own plugins too. This is also what gst-env.py does. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1768>
This commit is contained in:
parent
3941eb7dbd
commit
968a26e6f6
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ pathsep = host_machine.system() == 'windows' ? ';' : ':'
|
|||
all_plugins_paths = pathsep.join(all_plugins_paths)
|
||||
|
||||
devenv = environment()
|
||||
devenv.set('GST_PLUGIN_PATH', all_plugins_dirs)
|
||||
devenv.prepend('GST_PLUGIN_PATH', all_plugins_dirs)
|
||||
devenv.set('CURRENT_GST', meson.current_source_dir())
|
||||
devenv.set('GST_VERSION', meson.project_version())
|
||||
devenv.set('GST_ENV', 'gst-' + meson.project_version())
|
||||
|
|
Loading…
Reference in a new issue