gstreamer/subprojects/gst-plugins-bad/gst/audiofxbad/meson.build

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

32 lines
649 B
Meson
Raw Normal View History

audiofxbad_sources = [
'gstaudiofxbad.c',
'gstaudiochannelmix.c',
]
audiofxbad_headers = [
'gstaudiochannelmix.h',
]
doc_sources = []
foreach s: audiofxbad_sources + audiofxbad_headers
doc_sources += meson.current_source_dir() / s
endforeach
plugin_sources += {
'audiofxbad': pathsep.join(doc_sources)
}
if get_option('audiofxbad').disabled()
subdir_done()
endif
gstaudiofxbad = library('gstaudiofxbad',
audiofxbad_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstbase_dep, gstaudio_dep, libm],
install : true,
install_dir : plugins_install_dir,
)
2018-10-22 09:30:45 +00:00
plugins += [gstaudiofxbad]