mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
8305cb2995
This effectively (but optionally) requires libjpeg-turbo which ships with a .pc file and is what pretty much everyone these days uses anyway for libjpeg, so shouldn't be a problem hopefully. https://bugzilla.gnome.org/show_bug.cgi?id=796947
20 lines
536 B
Meson
20 lines
536 B
Meson
jpeg_sources = [
|
|
'gstjpeg.c',
|
|
'gstjpegenc.c',
|
|
'gstjpegdec.c',
|
|
]
|
|
|
|
jpeglib = dependency('libjpeg', required : get_option('jpeg'))
|
|
|
|
if jpeglib.found()
|
|
gstjpeg = library('gstjpeg',
|
|
jpeg_sources,
|
|
c_args : gst_plugins_good_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gst_dep, gstbase_dep, gstvideo_dep, jpeglib, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstjpeg, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|