gstreamer/plugin/meson.build
Olivier Crête 2cfded4834 pythonplugin: Rename plugin file to match plugin name
This is required by the new loader macro.
2017-05-21 13:16:41 +02:00

8 lines
356 B
Meson

gst_elements_shared = shared_library('gstpython',
['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')),
)