summaryrefslogtreecommitdiff
path: root/src/audio/CMakeLists.txt
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2022-12-03 11:10:06 +1100
committerjacqueline <me@jacqueline.id.au>2022-12-03 11:10:06 +1100
commit16d5d29049c08e21f57f7928ceedf40586a2d294 (patch)
treea4647f951f90b036c58c879ae186fa7e452ed950 /src/audio/CMakeLists.txt
parent00d4883d3a683eaf9cfaefacdd81434e0974ad13 (diff)
downloadtangara-fw-16d5d29049c08e21f57f7928ceedf40586a2d294.tar.gz
Use std::span (backported) and std::byte to make our buffers safer
Diffstat (limited to 'src/audio/CMakeLists.txt')
-rw-r--r--src/audio/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio/CMakeLists.txt b/src/audio/CMakeLists.txt
index d5564f13..6fb2634e 100644
--- a/src/audio/CMakeLists.txt
+++ b/src/audio/CMakeLists.txt
@@ -2,6 +2,6 @@ idf_component_register(
SRCS "audio_decoder.cpp" "audio_task.cpp" "chunk.cpp" "fatfs_audio_input.cpp"
"stream_info.cpp" "stream_message.cpp"
INCLUDE_DIRS "include"
- REQUIRES "codecs" "drivers" "cbor" "result" "tasks")
+ REQUIRES "codecs" "drivers" "cbor" "result" "tasks" "span" "psram_allocator")
target_compile_options(${COMPONENT_LIB} PRIVATE ${EXTRA_WARNINGS})