gstreamer/subprojects/gst-python/gi/overrides/meson.build
Thibault Saunier c79574c2d3 python: Do not link GStreamer in the overrides
Symbols will already be present thanks to pygobject dlopenning the correct lib

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4128>
2023-05-31 15:17:11 +00:00

20 lines
627 B
Meson

pysources = ['Gst.py', 'GstPbutils.py', 'GstVideo.py', 'GstAudio.py']
python.install_sources(pysources,
pure : false,
subdir: 'gi/overrides',
)
gstpython = python.extension_module('_gi_gst',
sources: ['gstmodule.c'],
install: true,
install_dir : pygi_override_dir,
install_tag: 'python-runtime',
include_directories : [configinc],
dependencies : [gst_dep.partial_dependency(compile_args: true, includes: true, sources: true), python_dep, pygobject_dep])
env = environment()
env.prepend('_GI_OVERRIDES_PATH', [
meson.current_source_dir(),
meson.current_build_dir()
])
meson.add_devenv(env)