Skip to content

Commit fa005c6

Browse files
igrrdavid-cermak
authored andcommitted
fix(esp_mqtt_cxx): specify override_path in example manifest files
1 parent 5b78da4 commit fa005c6

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

components/esp_mqtt_cxx/examples/ssl/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ cmake_minimum_required(VERSION 3.16)
44

55
# (Not part of the boilerplate) This example uses an extra component for common
66
# functions such as Wi-Fi and Ethernet connection.
7-
# The path to esp_mqtt_cxx is also added.
87
set(EXTRA_COMPONENT_DIRS
9-
"../../../../common_components/protocol_examples_common" "../../")
8+
"../../../../common_components/protocol_examples_common")
109

1110
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
1211
project(mqtt_ssl_cxx)

components/esp_mqtt_cxx/examples/ssl/main/idf_component.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ dependencies:
33
idf: ">=5.0"
44
espressif/esp_mqtt_cxx:
55
version: "^0.1.0"
6+
override_path: "../../../"

components/esp_mqtt_cxx/examples/tcp/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ cmake_minimum_required(VERSION 3.16)
44

55
# (Not part of the boilerplate)
66
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
7-
# The path to esp_mqtt_cxx is also added.
87
set(EXTRA_COMPONENT_DIRS
9-
"../../../../common_components/protocol_examples_common" "../../")
8+
"../../../../common_components/protocol_examples_common")
109

1110
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
1211
project(mqtt_tcp_cxx)

components/esp_mqtt_cxx/examples/tcp/main/idf_component.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ dependencies:
33
idf: ">=5.0"
44
espressif/esp_mqtt_cxx:
55
version: "^0.1.0"
6+
override_path: "../../../"

components/esp_mqtt_cxx/idf_component.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
version: "0.2.0"
2-
description: esp mqtt cxx
2+
description: C++ APIs for ESP-MQTT library
33
url: https://github.com/espressif/esp-protocols/tree/master/components/esp_mqtt_cxx
4+
issues: https://github.com/espressif/esp-protocols/issues
5+
documentation: https://docs.espressif.com/projects/esp-protocols/esp_mqtt_cxx/docs/latest/index.html
6+
repository: https://github.com/espressif/esp-protocols.git
47
dependencies:
58
espressif/esp-idf-cxx: "^1.0.0-beta"
69
# Required IDF version

0 commit comments

Comments
 (0)