mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
3d8372cc50
This should make "meson devenv" closer to what "gst-env.py" sets. - GST_VALIDATE_SCENARIOS_PATH - GST_VALIDATE_APPS_DIR - GST_OMX_CONFIG_DIR - GST_ENCODING_TARGET_PATH - GST_PRESET_PATH - GST_PLUGIN_SCANNER - GST_PTP_HELPER - _GI_OVERRIDES_PATH Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1768>
17 lines
504 B
Meson
17 lines
504 B
Meson
pysources = ['Gst.py', 'GstPbutils.py', 'GstVideo.py', 'GstAudio.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])
|
|
|
|
env = environment()
|
|
env.prepend('_GI_OVERRIDES_PATH', [
|
|
meson.current_source_dir(),
|
|
meson.current_build_dir()
|
|
])
|
|
meson.add_devenv(env)
|