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-04-18 14:13:05 +00:00
|
|
|
list(APPEND COMPONENT_SRCS "src/memory_layout_utils.c"
|
|
|
|
"src/lldesc.c"
|
|
|
|
"src/hal/spi_hal.c"
|
|
|
|
"src/hal/spi_hal_iram.c"
|
|
|
|
"src/hal/spi_slave_hal.c"
|
|
|
|
"src/hal/spi_slave_hal_iram.c"
|
|
|
|
"src/soc_include_legacy_warn.c"
|
|
|
|
)
|
2018-03-22 06:27:10 +00:00
|
|
|
|
2018-04-18 02:57:45 +00:00
|
|
|
set(COMPONENT_ADD_LDFRAGMENTS linker.lf)
|
|
|
|
|
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()
|