Files
esp-idf/components/xtensa/CMakeLists.txt
2019-06-11 13:07:02 +08:00

15 lines
369 B
CMake

if(NOT BOOTLOADER_BUILD)
set(COMPONENT_SRCS "eri.c" "trax.c")
endif()
set(COMPONENT_ADD_INCLUDEDIRS "include" "${IDF_TARGET}/include")
set(COMPONENT_ADD_LDFRAGMENTS linker.lf)
set(COMPONENT_PRIV_REQUIRES soc)
register_component()
if (NOT BOOTLOADER_BUILD)
target_link_libraries(${COMPONENT_LIB} "${CMAKE_CURRENT_SOURCE_DIR}/${IDF_TARGET}/libhal.a")
endif()