2019-08-08 00:00:45 -04:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2020-01-16 22:47:08 -05:00
|
|
|
if(NOT "${target}" STREQUAL "esp32s2")
|
2019-08-08 00:00:45 -04:00
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2021-03-19 08:03:13 -04:00
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
|
|
# [refactor-todo] propagate these requirements for compatibility
|
|
|
|
# remove in the future
|
2022-03-28 03:44:51 -04:00
|
|
|
set(legacy_reqs soc)
|
2021-03-19 08:03:13 -04:00
|
|
|
endif()
|
2019-05-09 23:34:06 -04:00
|
|
|
|
2021-07-15 00:55:15 -04:00
|
|
|
idf_component_register(REQUIRES xtensa "${legacy_reqs}"
|
2021-03-19 08:03:13 -04:00
|
|
|
REQUIRED_IDF_TARGETS esp32s2)
|