refactor(protocomm): Make the protocomm proto-c headers public

This commit is contained in:
Laukik Hase
2024-02-28 13:47:08 +05:30
parent e6c139e56f
commit 2c0fcb7a1f
4 changed files with 6 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
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

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

View File

@@ -1,5 +1,4 @@
idf_component_register(SRC_DIRS "."
PRIV_INCLUDE_DIRS "."
PRIV_INCLUDE_DIRS "../proto-c/"
PRIV_REQUIRES cmock mbedtls protocomm protobuf-c test_utils)
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")

View File

@@ -20,6 +20,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)