2020-02-19 06:31:54 -05:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2021-01-22 10:06:37 -05:00
|
|
|
|
2021-06-28 05:51:48 -04:00
|
|
|
# should test arch here not target: IDF-1754
|
2021-11-06 05:31:05 -04:00
|
|
|
if("${target}" STREQUAL "esp32c3" OR "${target}" STREQUAL "esp32h2" OR "${target}" STREQUAL "esp8684")
|
2020-12-22 03:51:37 -05:00
|
|
|
return()
|
|
|
|
endif()
|
2021-01-22 10:06:37 -05:00
|
|
|
|
|
|
|
set(srcs "eri.c" "xt_trax.c")
|
|
|
|
|
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
|
|
list(APPEND srcs "xtensa_intr.c" "xtensa_intr_asm.S")
|
2019-05-27 02:29:43 -04:00
|
|
|
endif()
|
2019-03-25 09:11:53 -04:00
|
|
|
|
2019-08-07 23:44:24 -04:00
|
|
|
idf_component_register(SRCS ${srcs}
|
2019-04-28 03:38:23 -04:00
|
|
|
INCLUDE_DIRS include ${target}/include
|
2021-01-22 10:06:37 -05:00
|
|
|
LDFRAGMENTS linker.lf)
|
2019-03-25 09:11:53 -04:00
|
|
|
|
2021-06-11 04:30:22 -04:00
|
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/${target}/libxt_hal.a")
|