mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	1)Segregating mbedtls API into seperate file and cleaned esp_tls.c 2)Added support for wolfssl for CMake and make 3)Added support for debug_wolfssl (with menuconfig option) 4)Added info on wolfssl in ESP-TLS docs
		
			
				
	
	
		
			17 lines
		
	
	
		
			306 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			306 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 | 
						|
COMPONENT_SRCDIRS := .
 | 
						|
COMPONENT_OBJS := esp_tls.o
 | 
						|
 | 
						|
COMPONENT_ADD_INCLUDEDIRS := . private_include
 | 
						|
 | 
						|
 | 
						|
ifneq ($(CONFIG_ESP_TLS_USING_MBEDTLS), )
 | 
						|
COMPONENT_OBJS += esp_tls_mbedtls.o
 | 
						|
endif
 | 
						|
 | 
						|
ifneq ($(CONFIG_ESP_TLS_USING_WOLFSSL), )
 | 
						|
COMPONENT_OBJS += esp_tls_wolfssl.o
 | 
						|
endif
 | 
						|
 | 
						|
CFLAGS += -DWOLFSSL_USER_SETTINGS
 |