summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <arun@asymptotic.io>2021-10-19 16:20:35 -0400
committerArun Raghavan <arun@asymptotic.io>2021-10-20 11:15:57 -0400
commit0cc2ebeda2faf60f3367bd5e88e1247455dfcfee (patch)
tree8791120740f2959b51930fe2a71d957a4d962fbd
parent6064932abf662db451defe7326fc2dd0c3016f99 (diff)
downloadwebrtc-audio-processing-0cc2ebeda2faf60f3367bd5e88e1247455dfcfee.tar.gz
Add missing absl library for bad_optional_access
-rw-r--r--meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 0c608b0..e2635a4 100644
--- a/meson.build
+++ b/meson.build
@@ -48,6 +48,7 @@ absl_base_dep = dependency('absl_base', required : false)
absl_flags_dep = dependency('absl_flags', required : false)
absl_strings_dep = dependency('absl_strings', required : false)
absl_synchronization_dep = dependency('absl_synchronization', required : false)
+absl_types_dep = dependency('absl_optional', required : false)
# If we have the base dep, assume the rest should be present to
if absl_base_dep.found()
@@ -55,7 +56,8 @@ if absl_base_dep.found()
absl_base_dep,
absl_flags_dep,
absl_strings_dep,
- absl_synchronization_dep
+ absl_synchronization_dep,
+ absl_types_dep,
]
else
warning('Could not find abseil-cpp with pkg-config, trying CMake-based library detection.')
@@ -63,6 +65,7 @@ else
modules : [
'absl::base',
'absl::flags_parse',
+ 'absl::optional',
'absl::strings',
'absl::synchronization',
],