From fe73b4c7fe5d03a03f36e961b89f3e739ea70552 Mon Sep 17 00:00:00 2001 From: Dong Heng Date: Fri, 4 May 2018 14:43:10 +0800 Subject: [PATCH] feat(spiffs): Add cmake script --- components/spiffs/CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 components/spiffs/CMakeLists.txt diff --git a/components/spiffs/CMakeLists.txt b/components/spiffs/CMakeLists.txt new file mode 100644 index 00000000..f2b03f79 --- /dev/null +++ b/components/spiffs/CMakeLists.txt @@ -0,0 +1,7 @@ +set(COMPONENT_ADD_INCLUDEDIRS include include/spiffs) +set(COMPONENT_SRCDIRS library) + +set(COMPONENT_REQUIRES freertos) +set(COMPONENT_PRIV_REQUIRES esp8266) + +register_component()