2019-04-28 15:38:23 +08: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 19:46:37 +11:00
|
|
|
PRIV_REQUIRES bootloader_support esptool_py)
|
2018-01-12 13:49:13 +11:00
|
|
|
|
2021-09-10 19:23:12 +02:00
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
|
|
|
|
set_source_files_properties(spiffs/src/spiffs_nucleus.c PROPERTIES COMPILE_FLAGS -Wno-stringop-truncation)
|
|
|
|
endif()
|