mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 04:25:32 +00:00

Currently, several examples do not explicitly state their component dependencies, relying instead on the default behavior that includes all registered components and commonly required ones in the build. Explicitly adding component dependencies can reduce build time when set(COMPONENTS main) is used. Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
12 lines
366 B
CMake
12 lines
366 B
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
if("${CONFIG_EXAMPLE_IPV4}" STREQUAL y)
|
|
set(tcp_client_ip tcp_client_v4.c)
|
|
else()
|
|
set(tcp_client_ip tcp_client_v6.c)
|
|
endif()
|
|
|
|
idf_component_register(SRCS "tcp_client_main.c" "${tcp_client_ip}"
|
|
INCLUDE_DIRS "."
|
|
PRIV_REQUIRES unity nvs_flash esp_netif)
|