File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
esp_websocket_client/examples/target Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
4
4
5
5
# (Not part of the boilerplate)
6
6
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
7
- set (EXTRA_COMPONENT_DIRS ../.. ../../../.. /common_components/protocol_examples_common )
7
+ set (EXTRA_COMPONENT_DIRS ../.. $ENV{IDF_PATH} /examples /common_components/protocol_examples_common )
8
8
9
9
include ($ENV{IDF_PATH} /tools/cmake/project.cmake )
10
10
project (asio_chat )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
4
4
5
5
# (Not part of the boilerplate)
6
6
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
7
- set (EXTRA_COMPONENT_DIRS ../../../.. /common_components/protocol_examples_common )
7
+ set (EXTRA_COMPONENT_DIRS $ENV{IDF_PATH} /examples /common_components/protocol_examples_common )
8
8
9
9
include ($ENV{IDF_PATH} /tools/cmake/project.cmake )
10
10
project (async_http_request )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
4
4
5
5
# (Not part of the boilerplate)
6
6
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
7
- set (EXTRA_COMPONENT_DIRS ../../../.. /common_components/protocol_examples_common )
7
+ set (EXTRA_COMPONENT_DIRS $ENV{IDF_PATH} /examples /common_components/protocol_examples_common )
8
8
9
9
include ($ENV{IDF_PATH} /tools/cmake/project.cmake )
10
10
project (asio_sock4 )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
4
4
5
5
# (Not part of the boilerplate)
6
6
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
7
- set (EXTRA_COMPONENT_DIRS ../../../.. /common_components/protocol_examples_common )
7
+ set (EXTRA_COMPONENT_DIRS $ENV{IDF_PATH} /examples /common_components/protocol_examples_common )
8
8
set (EXCLUDE_COMPONENTS openssl )
9
9
10
10
include ($ENV{IDF_PATH} /tools/cmake/project.cmake )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
4
4
5
5
# (Not part of the boilerplate)
6
6
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
7
- set (EXTRA_COMPONENT_DIRS ../../../.. /common_components/protocol_examples_common )
7
+ set (EXTRA_COMPONENT_DIRS $ENV{IDF_PATH} /examples /common_components/protocol_examples_common )
8
8
9
9
include ($ENV{IDF_PATH} /tools/cmake/project.cmake )
10
10
project (asio_tcp_echo_server )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16)
4
4
5
5
# (Not part of the boilerplate)
6
6
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
7
- set (EXTRA_COMPONENT_DIRS ../../../.. /common_components/protocol_examples_common )
7
+ set (EXTRA_COMPONENT_DIRS $ENV{IDF_PATH} /examples /common_components/protocol_examples_common )
8
8
9
9
include ($ENV{IDF_PATH} /tools/cmake/project.cmake )
10
10
project (asio_udp_echo_server )
Original file line number Diff line number Diff line change 3
3
cmake_minimum_required (VERSION 3.5 )
4
4
5
5
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
6
- list (APPEND EXTRA_COMPONENT_DIRS "../../../../ common_components/protocol_examples_common" )
6
+ list (APPEND EXTRA_COMPONENT_DIRS $ENV{IDF_PATH} /examples/ common_components/protocol_examples_common )
7
7
8
8
include ($ENV{IDF_PATH} /tools/cmake/project.cmake )
9
9
project (websocket_example )
You can’t perform that action at this time.
0 commit comments