mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
meson: Fix build with -Dopenjpeg=disabled
tests/check/meson.build uses the openjpeg_dep variable unconditionally, and the subdir_done() is useless anyway, since the plugin is only built if openjpeg_dep.found() is true. Fixes: ..\tests\check\meson.build:23:0: ERROR: Unknown variable "openjpeg_dep". In particular, this fixes the build on UWP since we disable openjpeg explicitly in Cerbero when building for UWP. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1069>
This commit is contained in:
parent
de05bb3da2
commit
be607d7cca
1 changed files with 0 additions and 4 deletions
|
@ -6,10 +6,6 @@ openjpeg_sources = [
|
|||
|
||||
openjpeg_cargs = []
|
||||
|
||||
if get_option('openjpeg').disabled()
|
||||
subdir_done()
|
||||
endif
|
||||
|
||||
openjpeg_dep = dependency('libopenjp2', version : '>=2.2',
|
||||
fallback : ['libopenjp2', 'libopenjp2_dep'],
|
||||
required : get_option('openjpeg'))
|
||||
|
|
Loading…
Reference in a new issue