Merge branch 'refactor/protocomm_public_hdr_v5.2' into 'release/v5.2'

refactor(protocomm): Make the protocomm `proto-c` headers public (v5.2)

See merge request espressif/esp-idf!29358
This commit is contained in:
Mahavir Jain 2024-03-06 19:54:25 +08:00
commit c83dc69938
4 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ if(${target} STREQUAL "linux")
endif()
set(include_dirs include)
set(priv_include_dirs proto-c src ../protocomm/proto-c)
set(priv_include_dirs proto-c src)
set(srcs "src/esp_local_ctrl.c"
"src/esp_local_ctrl_handler.c"
"proto-c/esp_local_ctrl.pb-c.c")

View File

@ -7,8 +7,9 @@ endif()
set(include_dirs include/common
include/security
include/transports
include/crypto/srp6a)
set(priv_include_dirs proto-c src/common)
include/crypto/srp6a
proto-c)
set(priv_include_dirs src/common)
set(srcs
"src/common/protocomm.c"
"proto-c/constants.pb-c.c"

View File

@ -1,4 +1,3 @@
idf_component_register(SRC_DIRS "."
PRIV_INCLUDE_DIRS "."
PRIV_INCLUDE_DIRS "../../proto-c/"
PRIV_REQUIRES cmock mbedtls protocomm protobuf-c test_utils unity)

View File

@ -28,6 +28,6 @@ endif()
idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS include
PRIV_INCLUDE_DIRS src proto-c ../protocomm/proto-c
PRIV_INCLUDE_DIRS src proto-c
REQUIRES lwip protocomm
PRIV_REQUIRES protobuf-c bt json esp_timer esp_wifi)