mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
15 lines
404 B
CMake
15 lines
404 B
CMake
set(srcs "src/diskio.c"
|
|
"src/diskio_rawflash.c"
|
|
"src/diskio_sdmmc.c"
|
|
"src/diskio_wl.c"
|
|
"src/ff.c"
|
|
"src/ffsystem.c"
|
|
"src/ffunicode.c"
|
|
"src/vfs_fat.c"
|
|
"src/vfs_fat_sdmmc.c"
|
|
"src/vfs_fat_spiflash.c")
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS src
|
|
REQUIRES wear_levelling sdmmc)
|