2019-05-10 02:53:08 +00:00
|
|
|
idf_build_get_property(soc_name IDF_TARGET)
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2019-05-10 02:53:08 +00:00
|
|
|
if(EXISTS "${COMPONENT_DIR}/${soc_name}")
|
|
|
|
include(${COMPONENT_DIR}/${soc_name}/sources.cmake)
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2018-10-19 03:51:51 +00:00
|
|
|
spaces2list(SOC_SRCS)
|
2019-05-10 02:53:08 +00:00
|
|
|
add_prefix(COMPONENT_SRCS "${soc_name}/" ${SOC_SRCS})
|
|
|
|
set(COMPONENT_ADD_INCLUDEDIRS ${soc_name}/include)
|
2018-10-19 03:51:51 +00:00
|
|
|
endif()
|
2018-03-22 06:27:10 +00:00
|
|
|
|
2018-10-19 03:51:51 +00:00
|
|
|
list(APPEND COMPONENT_ADD_INCLUDEDIRS include)
|
2019-05-27 06:29:43 +00:00
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
|
|
list(APPEND COMPONENT_SRCS "src/memory_layout_utils.c"
|
2019-06-06 02:57:29 +00:00
|
|
|
"src/lldesc.c"
|
2019-05-27 06:29:43 +00:00
|
|
|
"src/soc_include_legacy_warn.c")
|
2018-03-22 06:27:10 +00:00
|
|
|
|
2019-06-19 07:31:47 +00:00
|
|
|
if(soc_name STREQUAL "esp32")
|
|
|
|
list(APPEND COMPONENT_SRCS "src/hal/spi_hal.c" "src/hal/spi_hal_iram.c"
|
|
|
|
"src/hal/spi_slave_hal.c" "src/hal/spi_slave_hal_iram.c")
|
2019-06-06 02:57:29 +00:00
|
|
|
endif()
|
|
|
|
|
2019-05-27 06:29:43 +00:00
|
|
|
set(COMPONENT_ADD_LDFRAGMENTS linker.lf)
|
|
|
|
endif()
|
2018-04-18 02:57:45 +00:00
|
|
|
|
2019-03-25 13:11:53 +00:00
|
|
|
set(COMPONENT_REQUIRES)
|
2018-04-18 02:57:45 +00:00
|
|
|
|
2018-10-19 03:51:51 +00:00
|
|
|
register_component()
|