build: fix meson for webrtc support

Change-Id: Iedcfe91af40893004c8f640c8a718966db8d7468
This commit is contained in:
Sébastien Blin
2021-03-19 11:01:07 -04:00
committed by Adrien Béraud
parent 61e230267e
commit a699262e72
3 changed files with 15 additions and 0 deletions

View File

@ -80,6 +80,9 @@ conf.set10('HAVE_PULSE', deplibpulse.found())
depjack = dependency('jack', required: get_option('jack'))
conf.set10('HAVE_JACK', depjack.found())
depwebrtcap = dependency('webrtc-audio-processing', required: get_option('webrtc-audio-processing'))
conf.set10('HAVE_WEBRTC_AP', depwebrtcap.found())
depportaudio = dependency('portaudio-2.0', required: get_option('portaudio'))
conf.set10('HAVE_PORTAUDIO', depportaudio.found())