mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
7decf3e344
Protocol examples used to raise an error if the target was not set and `idf.py build` command was used. This commit fix this error and when IDF_TARGET is not set, ESP32 is selected as default target
16 lines
450 B
CMake
16 lines
450 B
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
if(${target} STREQUAL "linux")
|
|
set(requires esp_stubs protocol_examples_common nvs_flash)
|
|
endif()
|
|
|
|
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 "."
|
|
REQUIRES ${requires})
|