CMakeLists.txt 503 B

1234567891011121314
  1. idf_build_get_property(target IDF_TARGET)
  2. if(${target} STREQUAL "linux")
  3. return() # This component is not supported by the POSIX/Linux simulator
  4. endif()
  5. idf_component_register(SRCS "sdmmc_cmd.c"
  6. "sdmmc_common.c"
  7. "sdmmc_init.c"
  8. "sdmmc_io.c"
  9. "sdmmc_mmc.c"
  10. "sdmmc_sd.c"
  11. INCLUDE_DIRS include
  12. PRIV_REQUIRES soc esp_timer)