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-04-28 07:38:23 +00:00
|
|
|
add_prefix(srcs "${soc_name}/" ${SOC_SRCS})
|
|
|
|
set(include_dirs ${soc_name}/include)
|
2018-10-19 03:51:51 +00:00
|
|
|
endif()
|
2018-03-22 06:27:10 +00:00
|
|
|
|
2019-04-28 07:38:23 +00:00
|
|
|
list(APPEND include_dirs include)
|
2019-06-21 06:29:32 +00:00
|
|
|
list(APPEND 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"
|
|
|
|
"src/hal/spi_flash_hal.c"
|
|
|
|
"src/hal/spi_flash_hal_iram.c"
|
2019-04-18 14:13:05 +00:00
|
|
|
)
|
2018-03-22 06:27:10 +00:00
|
|
|
|
2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
|
|
INCLUDE_DIRS "${include_dirs}"
|
|
|
|
LDFRAGMENTS linker.lf)
|