mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-09-25 11:37:26 +00:00
Fix 3rdparty target names for custom config
Use the correct names qualified by MBEDTLS_TARGET_PREFIX. Signed-off-by: David Horstmann <[email protected]>
This commit is contained in:
committed by
Dave Rodgman
parent
0a403d4fd6
commit
b63134a910
Vendored
+2
-2
@@ -18,11 +18,11 @@ target_include_directories(${everest_target}
|
|||||||
# everest is not directly linked against any mbedtls targets
|
# everest is not directly linked against any mbedtls targets
|
||||||
# so does not inherit the compile definitions.
|
# so does not inherit the compile definitions.
|
||||||
if(MBEDTLS_CONFIG_FILE)
|
if(MBEDTLS_CONFIG_FILE)
|
||||||
target_compile_definitions(everest
|
target_compile_definitions(${everest_target}
|
||||||
PUBLIC MBEDTLS_CONFIG_FILE="${MBEDTLS_CONFIG_FILE}")
|
PUBLIC MBEDTLS_CONFIG_FILE="${MBEDTLS_CONFIG_FILE}")
|
||||||
endif()
|
endif()
|
||||||
if(MBEDTLS_USER_CONFIG_FILE)
|
if(MBEDTLS_USER_CONFIG_FILE)
|
||||||
target_compile_definitions(everest
|
target_compile_definitions(${everest_target}
|
||||||
PUBLIC MBEDTLS_USER_CONFIG_FILE="${MBEDTLS_USER_CONFIG_FILE}")
|
PUBLIC MBEDTLS_USER_CONFIG_FILE="${MBEDTLS_USER_CONFIG_FILE}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|||||||
Vendored
+2
-2
@@ -16,11 +16,11 @@ target_include_directories(${p256m_target}
|
|||||||
# p256m is not directly linked against any mbedtls targets
|
# p256m is not directly linked against any mbedtls targets
|
||||||
# so does not inherit the compile definitions.
|
# so does not inherit the compile definitions.
|
||||||
if(MBEDTLS_CONFIG_FILE)
|
if(MBEDTLS_CONFIG_FILE)
|
||||||
target_compile_definitions(p256m
|
target_compile_definitions(${p256m_target}
|
||||||
PUBLIC MBEDTLS_CONFIG_FILE="${MBEDTLS_CONFIG_FILE}")
|
PUBLIC MBEDTLS_CONFIG_FILE="${MBEDTLS_CONFIG_FILE}")
|
||||||
endif()
|
endif()
|
||||||
if(MBEDTLS_USER_CONFIG_FILE)
|
if(MBEDTLS_USER_CONFIG_FILE)
|
||||||
target_compile_definitions(p256m
|
target_compile_definitions(${p256m_target}
|
||||||
PUBLIC MBEDTLS_USER_CONFIG_FILE="${MBEDTLS_USER_CONFIG_FILE}")
|
PUBLIC MBEDTLS_USER_CONFIG_FILE="${MBEDTLS_USER_CONFIG_FILE}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Bugfix
|
||||||
|
* Fix accidental omission of MBEDTLS_TARGET_PREFIX in 3rdparty modules
|
||||||
|
in CMake.
|
||||||
Reference in New Issue
Block a user