2021-02-07 02:03:51 -05:00
|
|
|
set(INCLUDE_FILES "include" . include PUBLIC soc)
|
|
|
|
|
|
|
|
if(CONFIG_IDF_TARGET_ARCH_RISCV)
|
|
|
|
list(APPEND INCLUDE_FILES "include/riscv")
|
|
|
|
endif()
|
|
|
|
|
2021-11-23 07:11:33 -05:00
|
|
|
target_include_directories(${COMPONENT_LIB} PRIVATE ${INCLUDE_FILES} include/private)
|
2020-02-02 10:23:16 -05:00
|
|
|
|
2023-01-03 05:58:29 -05: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 11:59:19 -04:00
|
|
|
|
2020-02-02 10:23:16 -05: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 01:18:16 -04:00
|
|
|
add_subdirectory(soc/${target})
|