mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-17 15:19:45 +08:00
19 lines
559 B
CMake
19 lines
559 B
CMake
set(srcs "src/partition"
|
|
"src/spi_flash_raw.c"
|
|
"src/spi_flash.c")
|
|
if(BOOTLOADER_BUILD)
|
|
set(srcs "${srcs}" "port/port.c")
|
|
set(priv_requires "bootloader_support")
|
|
else()
|
|
if(CONFIG_ENABLE_TH25Q16HB_PATCH_0)
|
|
list(APPEND srcs "src/patch/th25q16hb.c")
|
|
endif()
|
|
|
|
set(priv_requires "esp8266" "freertos" "bootloader_support")
|
|
endif()
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
PRIV_REQUIRES "${priv_requires}"
|
|
INCLUDE_DIRS "include"
|
|
LDFRAGMENTS "linker.lf")
|