Add warning ignores to fix compiling with new esp-idf

This commit is contained in:
2023-12-20 15:21:02 +01:00
parent c10b8bd0e2
commit 6598fd9681

View File

@ -400,4 +400,9 @@ idf_component_register(
include
)
set_property(TARGET ${COMPONENT_LIB} PROPERTY CXX_STANDARD 23)
target_compile_options(${COMPONENT_TARGET}
PRIVATE
-Wno-array-bounds
-Wno-stringop-overflow
)
endif()