Skip to content

Commit 441e5b9

Browse files
committed
Fix build error when download from registry
1 parent 6e594d4 commit 441e5b9

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

components/esp_peer/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v1.2.2
4+
5+
### Bug Fixes
6+
7+
- Fixed build error for component name miss matched
8+
39
## v1.2.1
410

511
### Features

components/esp_peer/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ get_filename_component(BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR} NAME)
44
add_prebuilt_library(${BASE_DIR} "${CMAKE_CURRENT_SOURCE_DIR}/libs/${IDF_TARGET}/libpeer_default.a"
55
PRIV_REQUIRES ${BASE_DIR} esp_timer mbedtls)
66
target_link_libraries(${COMPONENT_LIB} PRIVATE "-L ${CMAKE_CURRENT_SOURCE_DIR}/libs/${IDF_TARGET}")
7-
target_link_libraries(${COMPONENT_LIB} PRIVATE esp_peer)
7+
target_link_libraries(${COMPONENT_LIB} PRIVATE ${BASE_DIR})

components/esp_peer/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: Espressif PeerConnection Library
2-
version: 1.2.1
2+
version: 1.2.2
33
url: "https://github.com/espressif/esp-webrtc-solution/tree/main/components/esp_peer"
44
documentation: "https://github.com/espressif/esp-webrtc-solution/tree/main/components/esp_peer/README.md"
55
issues: "https://github.com/espressif/esp-webrtc-solution/issues"

0 commit comments

Comments
 (0)