CMakeLists.txt 262 B

12345678
  1. set(srcs "esp_ot_cli.c")
  2. if(CONFIG_OPENTHREAD_CLI_ESP_EXTENSION)
  3. list(APPEND srcs "esp_ot_cli_extension.c" "esp_ot_tcp_socket.c" "esp_ot_udp_socket.c" "esp_ot_iperf.c")
  4. endif()
  5. idf_component_register(SRCS "${srcs}"
  6. INCLUDE_DIRS ".")