Skip to content

Commit

Permalink
fix(asio): Revert referencing protocol_examples_common from IDF
Browse files Browse the repository at this point in the history
This reverts commit 09abb18.
  • Loading branch information
david-cermak committed Nov 28, 2023
1 parent 9c555b9 commit f9e0281
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 12 deletions.
4 changes: 4 additions & 0 deletions components/asio/examples/asio_chat/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)

# (Not part of the boilerplate)
# 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)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(asio_chat)
2 changes: 0 additions & 2 deletions components/asio/examples/asio_chat/main/idf_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ dependencies:
espressif/asio:
version: "^1.14.1"
override_path: "../../../"
protocol_examples_common:
path: ${IDF_PATH}/examples/common_components/protocol_examples_common
4 changes: 4 additions & 0 deletions components/asio/examples/async_request/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)

# (Not part of the boilerplate)
# 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)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(async_http_request)
2 changes: 0 additions & 2 deletions components/asio/examples/async_request/main/idf_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ dependencies:
espressif/asio:
version: "^1.14.1"
override_path: "../../../"
protocol_examples_common:
path: ${IDF_PATH}/examples/common_components/protocol_examples_common
4 changes: 4 additions & 0 deletions components/asio/examples/socks4/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)

# (Not part of the boilerplate)
# 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)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(asio_sock4)
2 changes: 0 additions & 2 deletions components/asio/examples/socks4/main/idf_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ dependencies:
espressif/asio:
version: "^1.14.1"
override_path: "../../../"
protocol_examples_common:
path: ${IDF_PATH}/examples/common_components/protocol_examples_common
3 changes: 3 additions & 0 deletions components/asio/examples/ssl_client_server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)

# (Not part of the boilerplate)
# 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(EXCLUDE_COMPONENTS openssl)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ dependencies:
espressif/asio:
version: "^1.14.1"
override_path: "../../../"
protocol_examples_common:
path: ${IDF_PATH}/examples/common_components/protocol_examples_common
4 changes: 4 additions & 0 deletions components/asio/examples/tcp_echo_server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)

# (Not part of the boilerplate)
# 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)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(asio_tcp_echo_server)
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ dependencies:
espressif/asio:
version: "^1.14.1"
override_path: "../../../"
protocol_examples_common:
path: ${IDF_PATH}/examples/common_components/protocol_examples_common
4 changes: 4 additions & 0 deletions components/asio/examples/udp_echo_server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)

# (Not part of the boilerplate)
# 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)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(asio_udp_echo_server)
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ dependencies:
espressif/asio:
version: "^1.14.1"
override_path: "../../../"
protocol_examples_common:
path: ${IDF_PATH}/examples/common_components/protocol_examples_common

0 comments on commit f9e0281

Please sign in to comment.