OVMS3-idf/components/xtensa/CMakeLists.txt
2019-06-11 13:07:37 +08:00

18 lines
453 B
CMake

if(NOT BOOTLOADER_BUILD)
set(COMPONENT_SRCS "eri.c")
if(IDF_TARGET STREQUAL "esp32")
list(APPEND COMPONENT_SRCS "trax.c")
endif()
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()