25 lines
933 B
CMake
25 lines
933 B
CMake
set(COMPONENT_ADD_INCLUDEDIRS include/common
|
|
include/security
|
|
include/transports)
|
|
set(COMPONENT_PRIV_INCLUDEDIRS proto-c src/common src/simple_ble)
|
|
set(COMPONENT_SRCS "src/common/protocomm.c"
|
|
"src/security/security0.c"
|
|
"src/security/security1.c"
|
|
"proto-c/constants.pb-c.c"
|
|
"proto-c/sec0.pb-c.c"
|
|
"proto-c/sec1.pb-c.c"
|
|
"proto-c/session.pb-c.c"
|
|
"src/transports/protocomm_console.c"
|
|
"src/transports/protocomm_httpd.c")
|
|
|
|
set(COMPONENT_PRIV_REQUIRES protobuf-c mbedtls console esp_http_server bt)
|
|
|
|
if(CONFIG_BT_ENABLED)
|
|
if(CONFIG_BLUEDROID_ENABLED)
|
|
list(APPEND COMPONENT_SRCS
|
|
"src/simple_ble/simple_ble.c"
|
|
"src/transports/protocomm_ble.c")
|
|
endif()
|
|
endif()
|
|
|
|
register_component()
|