mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
be607d7cca
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>
26 lines
775 B
Meson
26 lines
775 B
Meson
openjpeg_sources = [
|
|
'gstopenjpeg.c',
|
|
'gstopenjpegdec.c',
|
|
'gstopenjpegenc.c',
|
|
]
|
|
|
|
openjpeg_cargs = []
|
|
|
|
openjpeg_dep = dependency('libopenjp2', version : '>=2.2',
|
|
fallback : ['libopenjp2', 'libopenjp2_dep'],
|
|
required : get_option('openjpeg'))
|
|
|
|
if openjpeg_dep.found()
|
|
gstopenjpeg = library('gstopenjpeg',
|
|
openjpeg_sources,
|
|
c_args : gst_plugins_bad_args + openjpeg_cargs,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gst_dep, gstvideo_dep, openjpeg_dep,
|
|
gstcodecparsers_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstopenjpeg, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstopenjpeg]
|
|
endif
|