From 9f58515d7fbee75b5e564643202f5127075962a4 Mon Sep 17 00:00:00 2001 From: 0xFEEDC0DE64 Date: Fri, 4 Mar 2022 16:23:40 +0100 Subject: [PATCH] Fix compiling after esp-idf update by removing openssl as dependency --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 19cff29e..5c6e82ba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ set(includedirs set(srcs ${CORE_SRCS} ${LIBRARY_SRCS} ${BLE_SRCS}) set(requires spi_flash mbedtls esp_adc_cal wifi_provisioning) -set(priv_requires nvs_flash spiffs bootloader_support openssl tinyusb espcpputils fmt) +set(priv_requires nvs_flash spiffs bootloader_support tinyusb espcpputils fmt) idf_component_register(INCLUDE_DIRS ${includedirs} PRIV_INCLUDE_DIRS ${priv_includes} SRCS ${srcs} REQUIRES ${requires} PRIV_REQUIRES ${priv_requires})