mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
10 lines
277 B
CMake
10 lines
277 B
CMake
if(CONFIG_OPENTHREAD_BR_AUTO_START)
|
|
set(srcs "esp_ot_br.c")
|
|
else()
|
|
set(srcs "esp_ot_br.c"
|
|
"esp_ot_cli_extension.c"
|
|
"esp_br_wifi_cmd.c")
|
|
endif()
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS ".")
|