mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
9 lines
362 B
Meson
9 lines
362 B
Meson
|
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')),
|
||
|
)
|