Arun Raghavan 867e2d875b Add a trivial example to run AEC offline
Just allows for some sanity testing for now, will improve for
configurability and add some sample data in the future.
2024-12-24 18:57:37 -05:00

9 lines
191 B
Meson

top_incdir = include_directories('..')
executable('run-offline',
'run-offline.cpp',
install: false,
include_directories: top_incdir,
dependencies: [audio_processing_dep, absl_dep]
)