fix(asio): specify override_path in example manifest files

This commit is contained in:
Ivan Grokhotkov
2023-09-18 12:18:24 +02:00
committed by David Cermak
parent 0584da5cb2
commit 1d8923cfbb
12 changed files with 15 additions and 12 deletions

View File

@ -3,4 +3,4 @@ dependencies:
idf: ">=5.0" idf: ">=5.0"
espressif/asio: espressif/asio:
version: "^1.14.1" version: "^1.14.1"
override_path: '../../../' override_path: "../../../"

View File

@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
# (Not part of the boilerplate) # (Not part of the boilerplate)
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection. # This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
set(EXTRA_COMPONENT_DIRS ../../ ../../../../common_components/protocol_examples_common) set(EXTRA_COMPONENT_DIRS ../../../../common_components/protocol_examples_common)
include($ENV{IDF_PATH}/tools/cmake/project.cmake) include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(async_http_request) project(async_http_request)

View File

@ -3,4 +3,4 @@ dependencies:
idf: ">=5.0" idf: ">=5.0"
espressif/asio: espressif/asio:
version: "^1.14.1" version: "^1.14.1"
override_path: '../../../' override_path: "../../../"

View File

@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
# (Not part of the boilerplate) # (Not part of the boilerplate)
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection. # This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
set(EXTRA_COMPONENT_DIRS ../.. ../../../../common_components/protocol_examples_common) set(EXTRA_COMPONENT_DIRS ../../../../common_components/protocol_examples_common)
include($ENV{IDF_PATH}/tools/cmake/project.cmake) include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(asio_sock4) project(asio_sock4)

View File

@ -3,4 +3,4 @@ dependencies:
idf: ">=5.0" idf: ">=5.0"
espressif/asio: espressif/asio:
version: "^1.14.1" version: "^1.14.1"
override_path: '../../../' override_path: "../../../"

View File

@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
# (Not part of the boilerplate) # (Not part of the boilerplate)
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection. # This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
set(EXTRA_COMPONENT_DIRS ../.. ../../../../common_components/protocol_examples_common) set(EXTRA_COMPONENT_DIRS ../../../../common_components/protocol_examples_common)
set(EXCLUDE_COMPONENTS openssl) set(EXCLUDE_COMPONENTS openssl)
include($ENV{IDF_PATH}/tools/cmake/project.cmake) include($ENV{IDF_PATH}/tools/cmake/project.cmake)

View File

@ -3,4 +3,4 @@ dependencies:
idf: ">=5.0" idf: ">=5.0"
espressif/asio: espressif/asio:
version: "^1.14.1" version: "^1.14.1"
override_path: '../../../' override_path: "../../../"

View File

@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
# (Not part of the boilerplate) # (Not part of the boilerplate)
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection. # This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
set(EXTRA_COMPONENT_DIRS ../.. ../../../../common_components/protocol_examples_common) set(EXTRA_COMPONENT_DIRS ../../../../common_components/protocol_examples_common)
include($ENV{IDF_PATH}/tools/cmake/project.cmake) include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(asio_tcp_echo_server) project(asio_tcp_echo_server)

View File

@ -3,4 +3,4 @@ dependencies:
idf: ">=5.0" idf: ">=5.0"
espressif/asio: espressif/asio:
version: "^1.14.1" version: "^1.14.1"
override_path: '../../../' override_path: "../../../"

View File

@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
# (Not part of the boilerplate) # (Not part of the boilerplate)
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection. # This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
set(EXTRA_COMPONENT_DIRS ../../ ../../../../common_components/protocol_examples_common) set(EXTRA_COMPONENT_DIRS ../../../../common_components/protocol_examples_common)
include($ENV{IDF_PATH}/tools/cmake/project.cmake) include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(asio_udp_echo_server) project(asio_udp_echo_server)

View File

@ -3,4 +3,4 @@ dependencies:
idf: ">=5.0" idf: ">=5.0"
espressif/asio: espressif/asio:
version: "^1.14.1" version: "^1.14.1"
override_path: '../../../' override_path: "../../../"

View File

@ -1,6 +1,9 @@
version: "1.28.0~0" version: "1.28.0~0"
description: ASIO description: Cross-platform C++ library for network and I/O programming
url: https://github.com/espressif/esp-protocols/tree/master/components/asio url: https://github.com/espressif/esp-protocols/tree/master/components/asio
issues: https://github.com/espressif/esp-protocols/issues
documentation: https://docs.espressif.com/projects/esp-protocols/asio/docs/latest/index.html
repository: https://github.com/espressif/esp-protocols.git
dependencies: dependencies:
idf: idf:
version: ">=5.0" version: ">=5.0"