mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-08 16:35:40 +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
|
endif
|
||||||
|
|
||||||
subdir('gi')
|
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()
|
if not get_option('tests').disabled()
|
||||||
subdir('testsuite')
|
subdir('testsuite')
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue