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.
10 lines
337 B
Meson
10 lines
337 B
Meson
gstaudiolatency = library('gstaudiolatency',
|
|
'gstaudiolatency.c',
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstaudiolatency, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstaudiolatency]
|