diff options
Diffstat (limited to '')
-rw-r--r-- | circuitpython/lib/sdmmc/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/circuitpython/lib/sdmmc/CMakeLists.txt b/circuitpython/lib/sdmmc/CMakeLists.txt new file mode 100644 index 0000000..f6e8fe2 --- /dev/null +++ b/circuitpython/lib/sdmmc/CMakeLists.txt @@ -0,0 +1,9 @@ +idf_component_register(SRCS "sdmmc_cmd.c" + "sdmmc_common.c" + "sdmmc_init.c" + "sdmmc_io.c" + "sdmmc_mmc.c" + "sdmmc_sd.c" + INCLUDE_DIRS include + REQUIRES driver + PRIV_REQUIRES soc) |