mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
8d65cee0a9
Which allows several components to use cryptographic functions from esp-tls which is the current abstraction layer.
17 lines
368 B
Makefile
17 lines
368 B
Makefile
|
|
COMPONENT_SRCDIRS := . esp-tls-crypto
|
|
COMPONENT_OBJS := esp_tls.o esp-tls-crypto/esp_tls_crypto.o
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := . esp-tls-crypto 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
|