1
0
mirror of https://github.com/espressif/esp-idf synced 2025-03-24 16:39:12 -04:00

14 lines
373 B
CMake
Raw Normal View History

2020-07-14 20:36:05 +08:00
idf_build_get_property(target IDF_TARGET)
if(NOT "${target}" STREQUAL "esp32s3")
return()
endif()
2020-07-23 13:40:10 +08:00
2021-03-19 20:03:13 +08:00
if(NOT BOOTLOADER_BUILD)
# [refactor-todo] propagate these requirements for compatibility
# remove in the future
set(legacy_reqs efuse soc)
2021-03-19 20:03:13 +08:00
endif()
2020-07-23 13:40:10 +08:00
idf_component_register(REQUIRES xtensa "${legacy_reqs}"
2021-03-19 20:03:13 +08:00
REQUIRED_IDF_TARGETS esp32s3)