From 201e0b39a75f23517fe24563e0dc9575bfb03175 Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Tue, 4 Jan 2022 15:41:06 +0530 Subject: [PATCH] esp-tls: remove redundant snippet from CMakeList --- components/esp-tls/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/components/esp-tls/CMakeLists.txt b/components/esp-tls/CMakeLists.txt index 839161e4bf..e4520bd0ff 100644 --- a/components/esp-tls/CMakeLists.txt +++ b/components/esp-tls/CMakeLists.txt @@ -20,11 +20,6 @@ if(CONFIG_ESP_TLS_USING_WOLFSSL) target_link_libraries(${COMPONENT_LIB} PUBLIC ${wolfssl}) endif() -if(CONFIG_ESP_TLS_USE_SE) - idf_component_get_property(cryptoauthlib esp-cryptoauthlib COMPONENT_LIB) - target_link_libraries(${COMPONENT_LIB} PUBLIC ${cryptoauthlib}) -endif() - # Increase link multiplicity to get some lwip symbols correctly resolved by the linker # due to cyclic dependencies present in IDF for lwip/esp_netif/mbedtls idf_component_get_property(lwip lwip COMPONENT_LIB)