From a56728a16bf032e51d3d1e49fd1be469450c5195 Mon Sep 17 00:00:00 2001 From: 0xFEEDC0DE64 Date: Wed, 13 Jan 2021 16:10:45 +0100 Subject: [PATCH] Added missing dependency --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2fa1c772..0d628b77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -153,7 +153,7 @@ set(includedirs set(srcs ${CORE_SRCS} ${LIBRARY_SRCS} ${BLE_SRCS}) set(priv_includes cores/esp32/libb64) -set(requires spi_flash mbedtls mdns esp_adc_cal) +set(requires spi_flash mbedtls mdns esp_adc_cal wifi_provisioning) set(priv_requires fatfs nvs_flash app_update spiffs bootloader_support openssl bt tinyusb main) idf_component_register(INCLUDE_DIRS ${includedirs} PRIV_INCLUDE_DIRS ${priv_includes} SRCS ${srcs} REQUIRES ${requires} PRIV_REQUIRES ${priv_requires})