diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-11-02 11:03:42 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-11-02 11:03:42 +0200 |
commit | 7528e34fd3bd3f8328231424c7b45cde5b380445 (patch) | |
tree | f8209b5582552379a67e5cadb4c21b3ef376375b /gst/pbtypes | |
parent | 2c786edb999a1336f0af3f41d68f085062203260 (diff) |
meson: Add pbtypes plugin
Diffstat (limited to 'gst/pbtypes')
-rw-r--r-- | gst/pbtypes/meson.build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gst/pbtypes/meson.build b/gst/pbtypes/meson.build new file mode 100644 index 000000000..55f752109 --- /dev/null +++ b/gst/pbtypes/meson.build @@ -0,0 +1,12 @@ +gstpbtypes_sources = [ + 'gstpbtypes.c' + ] + +gstpbtypes = library('gstpbtypes', + gstpbtypes_sources, + c_args : gst_plugins_base_args, + include_directories: [configinc, libsinc], + dependencies : [video_dep], + install : true, + install_dir : plugins_install_dir, +) |