mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
ba0e1df657
This fixes build failure in mplex and mpeg2enc plugins and most likely in kate plugin (untested).
19 lines
635 B
Meson
19 lines
635 B
Meson
if mjpegtools_dep.found()
|
|
mpeg2enc_dep = cxx.find_library('mpeg2encpp', required : false)
|
|
|
|
if mpeg2enc_dep.found()
|
|
gstmpeg2enc = library('gstmpeg2enc',
|
|
'gstmpeg2enc.cc',
|
|
'gstmpeg2encoptions.cc',
|
|
'gstmpeg2encoder.cc',
|
|
'gstmpeg2encstreamwriter.cc',
|
|
'gstmpeg2encpicturereader.cc',
|
|
cpp_args : gst_plugins_bad_args + ['-DGST_MJPEGTOOLS_API=' + mjpegtools_api],
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstvideo_dep, mjpegtools_dep, mpeg2enc_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
endif
|
|
endif
|