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

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

25 lines
690 B
Meson
Raw Normal View History

if cc.get_define('_MSC_VER') != ''
webrtc_audio_coding_dep = dependency('webrtc-audio-coding-1', required: get_option('isac'), default_options: ['default_library=static'])
else
webrtc_audio_coding_dep = dependency('webrtc-audio-coding-1', required: get_option('isac'))
endif
if webrtc_audio_coding_dep.found()
isac_sources = [
'gstisac.c',
'gstisacenc.c',
'gstisacdec.c',
'gstisacutils.c',
]
gstisac = library('gstisac', isac_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstaudio_dep, webrtc_audio_coding_dep],
install : true,
install_dir : plugins_install_dir,
)
plugins += [gstisac]
endif