Files
2026-03-23 20:33:18 +01:00

18 lines
766 B
CMake

idf_component_register(SRCS "Partition.cpp"
"BDL_Access.cpp"
"SPI_Flash.cpp"
"WL_Ext_Perf.cpp"
"WL_Ext_Safe.cpp"
"WL_Flash.cpp"
"crc32.cpp"
"wear_levelling.cpp"
"wl_blockdev.cpp"
INCLUDE_DIRS include
PRIV_INCLUDE_DIRS private_include
REQUIRES esp_partition esp_blockdev
PRIV_REQUIRES spi_flash)
if(CONFIG_COMPILER_STATIC_ANALYZER AND CMAKE_C_COMPILER_ID STREQUAL "GNU") # TODO IDF-10089
target_compile_options(${COMPONENT_LIB} PUBLIC -fno-analyzer)
endif()