mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
python:meson: Do not build plugin when statically built
It is not supported yet Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1093>
This commit is contained in:
parent
4c8ebd5d73
commit
81ab28e588
1 changed files with 5 additions and 1 deletions
|
@ -97,7 +97,11 @@ if get_option('default_library') == 'shared'
|
|||
endif
|
||||
|
||||
subdir('gi')
|
||||
subdir('plugin')
|
||||
if get_option('default_library') != 'static'
|
||||
subdir('plugin')
|
||||
else
|
||||
warning('Python plugin not supported with `static` builds yet.')
|
||||
endif
|
||||
if not get_option('tests').disabled()
|
||||
subdir('testsuite')
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue