mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
21 lines
474 B
Meson
21 lines
474 B
Meson
|
lc3_sources = [
|
||
|
'lc3-plugin.c',
|
||
|
'gstlc3dec.c',
|
||
|
'gstlc3enc.c',
|
||
|
]
|
||
|
|
||
|
lc3_dep = dependency('liblc3', required:get_option ('lc3'))
|
||
|
|
||
|
if lc3_dep.found()
|
||
|
gstlc3 = library('gstlc3',
|
||
|
lc3_sources,
|
||
|
c_args: gst_plugins_bad_args,
|
||
|
include_directories: [configinc],
|
||
|
dependencies: [gstaudio_dep, lc3_dep],
|
||
|
install: true,
|
||
|
install_dir: plugins_install_dir,
|
||
|
)
|
||
|
pkgconfig.generate(gstlc3, install_dir: plugins_pkgconfig_install_dir)
|
||
|
plugins += [gstlc3]
|
||
|
endif
|