Browse Source

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.
John Safranek 1 year ago
parent
commit
e56394a2ab
1 changed files with 8 additions and 4 deletions
  1. 8 4
      IDE/Espressif/ESP-IDF/libs/CMakeLists.txt

+ 8 - 4
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()