OVMS3-idf/components/xtensa/CMakeLists.txt

25 lines
716 B
CMake
Raw Normal View History

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-08-09 05:26:49 +00:00
"eri.c"
"stdatomic.c")
if(CONFIG_IDF_TARGET_ESP32)
list(APPEND srcs "trax.c")
endif()
endif()
idf_build_get_property(target IDF_TARGET)
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS include ${target}/include
LDFRAGMENTS linker.lf
PRIV_REQUIRES ${priv_requires})
if(NOT BOOTLOADER_BUILD)
target_link_libraries(${COMPONENT_LIB} PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/${target}/libhal.a")
endif()