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.
This commit is contained in:
John Safranek
2022-06-28 15:38:58 -07:00
parent 092b37f709
commit e56394a2ab

View File

@ -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()