mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 17:39:47 +00:00
16 lines
414 B
Meson
16 lines
414 B
Meson
jpegf_sources = [
|
|
'gstjpegformat.c',
|
|
'gstjpegparse.c',
|
|
'gstjifmux.c',
|
|
]
|
|
|
|
gstjpegformat = library('gstjpegformat',
|
|
jpegf_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gsttag_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstjpegformat, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstjpegformat]
|