mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
Do not gst-python by default
This commit is contained in:
parent
1a36ab2c27
commit
b844b7229a
2 changed files with 5 additions and 2 deletions
|
@ -12,8 +12,7 @@ subprojects = [
|
|||
'gst-plugins-ugly',
|
||||
'gst-plugins-bad',
|
||||
'gst-devtools',
|
||||
'gst-editing-services',
|
||||
'gst-python'
|
||||
'gst-editing-services'
|
||||
]
|
||||
|
||||
# FIXME Remove that check once we have ffmpeg as a gst-libav subproject
|
||||
|
@ -38,6 +37,9 @@ else
|
|||
subprojects += gst_libav
|
||||
endif
|
||||
|
||||
if get_option('enable_python')
|
||||
subprojects += ['gst-python']
|
||||
endif
|
||||
|
||||
foreach subproj: subprojects
|
||||
subproject(subproj, version: gst_version)
|
||||
|
|
1
meson_options.txt
Normal file
1
meson_options.txt
Normal file
|
@ -0,0 +1 @@
|
|||
option('enable_python', type : 'boolean', value : false)
|
Loading…
Reference in a new issue