mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
38dec0be48
It is required to define a mandatory dependency on lwip, so we introduced esp_netif_stack component and made it require lwip, instead of directly depending on lwip. This enables building w-out lwip and support other TCP/IP stacks.
21 lines
476 B
Plaintext
21 lines
476 B
Plaintext
menu "TestApp Configuration"
|
|
|
|
choice TESTAPP_COMPONENT_TEST
|
|
prompt "Component under test"
|
|
help
|
|
Component for which we check their dependencies
|
|
|
|
config TESTAPP_COMPONENT_ESP_NETIF
|
|
bool "esp_netif"
|
|
|
|
config TESTAPP_COMPONENT_LWIP
|
|
bool "lwip"
|
|
|
|
config TESTAPP_COMPONENT_ESP_NETIF_WITHOUT_LWIP
|
|
bool "esp_netif without lwip"
|
|
depends on ESP_NETIF_LOOPBACK
|
|
|
|
endchoice
|
|
|
|
endmenu
|