gstreamer/subprojects/gst-plugins-bad/ext/voamrwbenc/meson.build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
937 B
Meson
Raw Normal View History

2018-12-16 20:13:08 +00:00
voamrwbenc_dep = dependency('vo-amrwbenc', version: '>= 0.1.0', required: get_option('voamrwbenc'))
voamrwbenc_sources = [
'gstvoamrwb.c',
'gstvoamrwbenc.c',
]
voamrwbenc_headers = [
'gstvoamrwbenc.h',
]
doc_sources = []
foreach s: voamrwbenc_sources + voamrwbenc_headers
doc_sources += meson.current_source_dir() / s
endforeach
plugin_sources += {
'voamrwbenc': pathsep.join(doc_sources)
}
2018-12-16 20:13:08 +00:00
if voamrwbenc_dep.found()
gstvoamrwbenc = library('gstvoamrwbenc',
voamrwbenc_sources,
2018-12-16 20:13:08 +00:00
c_args: gst_plugins_bad_args,
link_args: noseh_link_args,
include_directories: [configinc],
dependencies: [gstaudio_dep, gstpbutils_dep, gsttag_dep, voamrwbenc_dep],
install: true,
install_dir: plugins_install_dir,
)
plugins += [gstvoamrwbenc]
2018-12-16 20:13:08 +00:00
endif
install_data('GstVoAmrwbEnc.prs', install_dir: presetdir)
env = environment()
env.prepend('GST_PRESET_PATH', meson.current_source_dir())
meson.add_devenv(env)