2019-04-28 03:38:23 -04:00
|
|
|
idf_component_register(SRCS "esp_spiffs.c"
|
|
|
|
"spiffs_api.c"
|
|
|
|
"spiffs/src/spiffs_cache.c"
|
|
|
|
"spiffs/src/spiffs_check.c"
|
|
|
|
"spiffs/src/spiffs_gc.c"
|
|
|
|
"spiffs/src/spiffs_hydrogen.c"
|
|
|
|
"spiffs/src/spiffs_nucleus.c"
|
|
|
|
INCLUDE_DIRS "include"
|
|
|
|
PRIV_INCLUDE_DIRS "." "spiffs/src"
|
|
|
|
REQUIRES spi_flash
|
2021-03-08 03:46:37 -05:00
|
|
|
PRIV_REQUIRES bootloader_support esptool_py)
|
2018-01-11 21:49:13 -05:00
|
|
|
|
2021-09-10 13:23:12 -04:00
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
|
|
|
|
set_source_files_properties(spiffs/src/spiffs_nucleus.c PROPERTIES COMPILE_FLAGS -Wno-stringop-truncation)
|
|
|
|
endif()
|