From dfe251e9a22c60c72d22ab15d1198d3cd7f7069b Mon Sep 17 00:00:00 2001 From: 0xFEEDC0DE64 Date: Mon, 15 Feb 2021 02:07:30 +0100 Subject: [PATCH] Fixed dependencies --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d628b77..afd1bc11 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 wifi_provisioning) +set(requires spi_flash mbedtls mdns esp_adc_cal wifi_provisioning esp_https_ota) 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})