Commit 58b35c9a authored by iabdalkader's avatar iabdalkader Committed by Damien George

extmod/extmod.cmake: Fix hard-coded mbedtls config file path.

* The mbedtls config file path is hard-coded to the config file in
the stm32 port. Any port using this cmake fragment is not actually
using its own config file.
parent cf7d962c
......@@ -184,7 +184,7 @@ if(MICROPY_SSL_MBEDTLS)
)
target_compile_definitions(micropy_lib_mbedtls INTERFACE
MBEDTLS_CONFIG_FILE="ports/stm32/mbedtls/mbedtls_config.h"
MBEDTLS_CONFIG_FILE="${MICROPY_PORT_DIR}/mbedtls/mbedtls_config.h"
)
list(APPEND MICROPY_INC_CORE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment