mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
17 lines
470 B
CMake
17 lines
470 B
CMake
if(CONFIG_EXAMPLE_WIFI_CONFIGURATION_MANUAL)
|
|
set(config_method manual_config.c)
|
|
else()
|
|
set(config_method provisioning.c scheme_generic_httpd.c)
|
|
endif()
|
|
|
|
if(CONFIG_EXAMPLE_WIRED_INTERFACE_IS_ETHERNET)
|
|
set(wired_iface ethernet_iface.c)
|
|
else()
|
|
set(wired_iface usb_ncm_iface.c)
|
|
endif()
|
|
|
|
idf_component_register(SRCS sta2eth_main.c
|
|
${wired_iface}
|
|
${config_method}
|
|
INCLUDE_DIRS "")
|