mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-20 14:09:26 +08:00

Changes: Added Config to enable wifi-provisioning and protocomm & their pre-requisites. Changed sdkconfig.defaults, apt headers, esp_log_internal.h for compilation. Removed console, ble provisioning examples. Modified esp_prov to enable only softap transport.
17 lines
653 B
CMake
17 lines
653 B
CMake
set(COMPONENT_ADD_INCLUDEDIRS include/common
|
|
include/security
|
|
include/transports)
|
|
set(COMPONENT_PRIV_INCLUDEDIRS proto-c src/common)
|
|
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_httpd.c")
|
|
|
|
set(COMPONENT_PRIV_REQUIRES protobuf-c mbedtls wifi_provisioning)
|
|
|
|
register_component()
|