mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7853700b50
Makes sure their path gets added to the uninstalled environment and makes sure they get included in the docs.
15 lines
472 B
Meson
15 lines
472 B
Meson
zvbi_dep = dependency('zvbi-0.2', required: get_option('teletext'))
|
|
|
|
if zvbi_dep.found()
|
|
gstteletext = library('gstteletext',
|
|
'gstteletextdec.c',
|
|
c_args: gst_plugins_bad_args,
|
|
link_args: noseh_link_args,
|
|
include_directories: [configinc],
|
|
dependencies: [gstvideo_dep, zvbi_dep],
|
|
install: true,
|
|
install_dir: plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstteletext, install_dir: plugins_pkgconfig_install_dir)
|
|
plugins += [gstteletext]
|
|
endif
|