2019-08-08 03:44:24 +00:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
# bootloader only needs headers from this component
|
|
|
|
set(priv_requires soc)
|
|
|
|
else()
|
|
|
|
set(priv_requires soc freertos)
|
|
|
|
set(srcs "debug_helpers.c"
|
|
|
|
"debug_helpers_asm.S"
|
2019-11-27 16:52:27 +00:00
|
|
|
"expression_with_stack_xtensa_asm.S"
|
|
|
|
"expression_with_stack_xtensa.c"
|
2019-08-09 05:26:49 +00:00
|
|
|
"eri.c"
|
2019-08-18 06:37:35 +00:00
|
|
|
)
|
2019-08-08 03:44:24 +00:00
|
|
|
|
2019-08-18 06:37:35 +00:00
|
|
|
if(IDF_TARGET STREQUAL "esp32s2beta")
|
|
|
|
list(APPEND srcs "stdatomic.c")
|
|
|
|
endif()
|
|
|
|
if(IDF_TARGET STREQUAL "esp32")
|
2019-08-08 03:44:24 +00:00
|
|
|
list(APPEND srcs "trax.c")
|
2019-06-06 02:57:29 +00:00
|
|
|
endif()
|
2019-05-27 06:29:43 +00:00
|
|
|
endif()
|
2019-03-25 13:11:53 +00:00
|
|
|
|
2019-04-28 07:38:23 +00:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2019-08-08 03:44:24 +00:00
|
|
|
idf_component_register(SRCS ${srcs}
|
2019-04-28 07:38:23 +00:00
|
|
|
INCLUDE_DIRS include ${target}/include
|
|
|
|
LDFRAGMENTS linker.lf
|
2019-08-08 03:44:24 +00:00
|
|
|
PRIV_REQUIRES ${priv_requires})
|
2019-03-25 13:11:53 +00:00
|
|
|
|
2019-08-08 03:44:24 +00:00
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/${target}/libhal.a")
|
2019-05-27 06:29:43 +00:00
|
|
|
endif()
|