gstreamer/ext/mplex/meson.build
Nicolas Dufresne ba0e1df657 Add missing include path for gst/glib-compat-prive.h
This fixes build failure in mplex and mpeg2enc plugins and most likely
in kate plugin (untested).
2017-03-24 15:43:07 -04:00

18 lines
574 B
Meson

if mjpegtools_dep.found()
mplex2_dep = cxx.find_library('mplex2', required : false)
if mplex2_dep.found()
gstmplex2 = library('gstmplex2',
'gstmplex.cc',
'gstmplexibitstream.cc',
'gstmplexjob.cc',
'gstmplexoutputstream.cc',
cpp_args : gst_plugins_bad_args + ['-DGST_MJPEGTOOLS_API=' + mjpegtools_api],
link_args : noseh_link_args,
include_directories : [configinc, libsinc],
dependencies : [gstaudio_dep, mjpegtools_dep, mplex2_dep],
install : true,
install_dir : plugins_install_dir,
)
endif
endif