mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
14 lines
361 B
Meson
14 lines
361 B
Meson
smooth_sources = [
|
|
'gstsmooth.c',
|
|
]
|
|
|
|
gstsmooth = library('gstsmooth',
|
|
smooth_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstsmooth, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstsmooth]
|