diff options
author | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2016-09-05 11:30:43 -0300 |
---|---|---|
committer | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2016-09-05 12:13:03 -0300 |
commit | 16f971226df1980b58ebde330123debaaf3b53d0 (patch) | |
tree | 301c8a8125902e63488fb78150d729a6ffcb02f5 /plugin | |
parent | df995fad7be0bbd596a8266a3af9b616940b0244 (diff) |
Add support for Meson as alternative/parallel build system
https://github.com/mesonbuild/meson
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/meson.build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugin/meson.build b/plugin/meson.build new file mode 100644 index 0000000..5897c12 --- /dev/null +++ b/plugin/meson.build @@ -0,0 +1,8 @@ +gst_elements_shared = shared_library('gstpythonplugin', + ['gstpythonplugin.c'], + c_args : '-DHAVE_CONFIG_H -DPY_LIB_LOC=@0@'.format(pylib_loc), + include_directories : [configinc], + dependencies : [gst_dep, pygobject_dep, gstbase_dep, python_dep, gmodule_dep], + install : true, + install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')), +) |