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