mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
d64bbc1e0c
Instead of fiddling with sys.path, we instead use a custom sys.meta_path importer
10 lines
330 B
Meson
10 lines
330 B
Meson
pysources = ['Gst.py', 'GstPbutils.py']
|
|
install_data(pysources,
|
|
install_dir: pygi_override_dir)
|
|
|
|
gstpython = python.extension_module('_gi_gst',
|
|
sources: ['gstmodule.c'],
|
|
install: true,
|
|
install_dir : pygi_override_dir,
|
|
include_directories : [configinc],
|
|
dependencies : [gst_dep, python_dep, pygobject_dep])
|