mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
dash: Fix typo in meson.build
This commit is contained in:
parent
484a272306
commit
951bd01fbe
1 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ xml2_dep = dependency('libxml-2.0',
|
||||||
)
|
)
|
||||||
|
|
||||||
if xml2_dep.found()
|
if xml2_dep.found()
|
||||||
gstsouphttpsrc = library('gstdashdemux',
|
gstdashdemux = library('gstdashdemux',
|
||||||
dash_sources,
|
dash_sources,
|
||||||
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
||||||
link_args : noseh_link_args,
|
link_args : noseh_link_args,
|
||||||
|
@ -21,6 +21,6 @@ if xml2_dep.found()
|
||||||
install : true,
|
install : true,
|
||||||
install_dir : plugins_install_dir,
|
install_dir : plugins_install_dir,
|
||||||
)
|
)
|
||||||
pkgconfig.generate(gstsouphttpsrc, install_dir : plugins_pkgconfig_install_dir)
|
pkgconfig.generate(gstdashdemux, install_dir : plugins_pkgconfig_install_dir)
|
||||||
plugins += [gstsouphttpsrc]
|
plugins += [gstdashdemux]
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue