diff options
Diffstat (limited to 'gst/jpegformat')
-rw-r--r-- | gst/jpegformat/meson.build | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gst/jpegformat/meson.build b/gst/jpegformat/meson.build new file mode 100644 index 000000000..c93fe7bc6 --- /dev/null +++ b/gst/jpegformat/meson.build @@ -0,0 +1,14 @@ +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, +) |