mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
c159984264
1. separate rom include files and linkscript to esp_rom 2. modefiy "include rom/xxx.h" to "include esp32/rom/xxx.h" 3. Forward compatible 4. update mqtt
19 lines
478 B
CMake
19 lines
478 B
CMake
set(SOC_NAME ${IDF_TARGET})
|
|
|
|
if(EXISTS "${COMPONENT_PATH}/${SOC_NAME}")
|
|
include(${COMPONENT_PATH}/${SOC_NAME}/sources.cmake)
|
|
|
|
spaces2list(SOC_SRCS)
|
|
add_prefix(COMPONENT_SRCS "${SOC_NAME}/" ${SOC_SRCS})
|
|
set(COMPONENT_ADD_INCLUDEDIRS ${SOC_NAME}/include)
|
|
endif()
|
|
|
|
list(APPEND COMPONENT_ADD_INCLUDEDIRS include)
|
|
list(APPEND COMPONENT_SRCS "src/memory_layout_utils.c")
|
|
|
|
set(COMPONENT_ADD_LDFRAGMENTS linker.lf)
|
|
|
|
set(COMPONENT_REQUIRES esp_rom)
|
|
|
|
register_component()
|