Moved mbedtls into the mbedtls module.

This commit is contained in:
Relintai 2023-12-16 14:49:19 +01:00
parent c0b05b4444
commit 7ee808e892
180 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ if is_builtin or not has_module:
# Use our headers for builtin or if the module is not going to be compiled.
# We decided not to depend on system mbedtls just for these few files that can
# be easily extracted.
env_crypto.Prepend(CPPPATH=["#thirdparty/mbedtls/include"])
env_crypto.Prepend(CPPPATH=["#modules/mbedtls/mbedtls/include"])
# MbedTLS core functions (for CryptoCore).
# If the mbedtls module is compiled we don't need to add the .c files with our

View File

@ -96,10 +96,10 @@ if env["builtin_mbedtls"]:
"xtea.c",
]
thirdparty_dir = "#thirdparty/mbedtls/library/"
thirdparty_dir = "mbedtls/library/"
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
env_mbed_tls.Prepend(CPPPATH=["#thirdparty/mbedtls/include/"])
env_mbed_tls.Prepend(CPPPATH=["mbedtls/include/"])
env_thirdparty = env_mbed_tls.Clone()
env_thirdparty.disable_warnings()

Some files were not shown because too many files have changed in this diff Show More