2021-02-07 15:03:51 +08:00
|
|
|
set(INCLUDE_FILES "include" . include PUBLIC soc)
|
|
|
|
|
|
|
|
if(CONFIG_IDF_TARGET_ARCH_RISCV)
|
|
|
|
list(APPEND INCLUDE_FILES "include/riscv")
|
|
|
|
endif()
|
|
|
|
|
2021-11-23 20:11:33 +08:00
|
|
|
target_include_directories(${COMPONENT_LIB} PRIVATE ${INCLUDE_FILES} include/private)
|
2020-02-02 23:23:16 +08:00
|
|
|
|
2023-01-03 18:58:29 +08:00
|
|
|
set(srcs "cpu_start.c" "panic_handler.c" "esp_system_chip.c")
|
|
|
|
|
|
|
|
if(CONFIG_SOC_BOD_SUPPORTED)
|
|
|
|
list(APPEND srcs "brownout.c")
|
|
|
|
endif()
|
2022-11-03 16:59:19 +01:00
|
|
|
|
2020-02-02 23:23:16 +08:00
|
|
|
add_prefix(srcs "${CMAKE_CURRENT_LIST_DIR}/" ${srcs})
|
|
|
|
|
|
|
|
target_sources(${COMPONENT_LIB} PRIVATE ${srcs})
|
|
|
|
|
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2020-10-08 13:18:16 +08:00
|
|
|
add_subdirectory(soc/${target})
|