mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
32232462ad
The `gstbuilddir` option has been removed by reverting the commit879126a3
. But the later commit1babccfe50
uses the option within a test. Remove the mentioned option from the test. Fixes:1babccfe50
Fix using overrides when not building PyGObject Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1829>
33 lines
1.4 KiB
Meson
33 lines
1.4 KiB
Meson
gst_python = subproject('gst-python', required: false)
|
|
gir = find_program('g-ir-scanner', required : get_option('introspection'))
|
|
if not gst_python.found() or not gir.found()
|
|
message('Not running python devenv tests: gst_python: @0@ gir: @1@'.format(gst_python.found(), gir.found()))
|
|
subdir_done()
|
|
endif
|
|
|
|
root_rel = '../..'
|
|
python = import('python').find_installation()
|
|
|
|
if run_command(python, '-c', 'import gi', check: false).returncode() != 0
|
|
message('PyGObject not found, not running PyGObject tests')
|
|
subdir_done()
|
|
endif
|
|
|
|
test('python-overrides-devenv', setenv, args: ['--builddir=@0@'.format(meson.project_build_root()),
|
|
'--srcdir=@0@'.format(meson.project_source_root()),
|
|
meson.current_source_dir() / 'python-devenv-overrides.py'])
|
|
|
|
env = environment()
|
|
env.set('GI_TYPELIB_PATH', meson.current_build_dir() / root_rel)
|
|
if build_machine.system() == 'windows'
|
|
env.append('PATH', meson.current_build_dir() / root_rel)
|
|
elif build_machine.system() == 'linux'
|
|
env.append('LD_LIBRARY_PATH', meson.current_build_dir() / root_rel)
|
|
else
|
|
env.append('DYLD_LIBRARY_PATH', meson.current_build_dir() / root_rel)
|
|
endif
|
|
|
|
env.set('GST_OVERRIDE_SRC_PATH', meson.current_source_dir() / root_rel / 'subprojects/gst-python/gi/overrides')
|
|
env.set('GST_OVERRIDE_BUILD_PATH', meson.current_build_dir() / root_rel / 'subprojects/gst-python/gi/overrides')
|
|
|
|
test('python-full', python, args: [meson.current_source_dir() / 'python-full.py'], env: env)
|