From e56394a2abe2c001187421863fc224622ecb16f7 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Tue, 28 Jun 2022 15:38:58 -0700 Subject: [PATCH] ESP-IDF Build Cleanup 1. Update the list of files to leave out of the build. They are ones that are included into ssl.c automatically. --- IDE/Espressif/ESP-IDF/libs/CMakeLists.txt | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/IDE/Espressif/ESP-IDF/libs/CMakeLists.txt b/IDE/Espressif/ESP-IDF/libs/CMakeLists.txt index 7207896d3..b8498e08f 100644 --- a/IDE/Espressif/ESP-IDF/libs/CMakeLists.txt +++ b/IDE/Espressif/ESP-IDF/libs/CMakeLists.txt @@ -38,10 +38,14 @@ if(IS_DIRECTORY ${IDF_PATH}/components/cryptoauthlib) endif() set(COMPONENT_SRCEXCLUDE - "wolfcrypt/src/aes_asm.S" - "wolfcrypt/src/evp.c" - "wolfcrypt/src/misc.c" - "src/bio.c" + "./src/bio.c" + "./src/conf.c" + "./src/misc.c" + "./src/pk.c" + "./src/x509.c" + "./src/x509_str.c" + "./wolfcrypt/src/evp.c" + "./wolfcrypt/src/misc.c" ) register_component()