mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2024-12-27 12:16:07 +00:00
d66fb8475c
This commit adjusts the paths of programs/psa to tf-psa-crypto/programs in CMakeLists.txt. Signed-off-by: Harry Ramsey <harry.ramsey@arm.com>
17 lines
432 B
CMake
17 lines
432 B
CMake
set(programs_target "${MBEDTLS_TARGET_PREFIX}programs")
|
|
add_custom_target(${programs_target})
|
|
|
|
add_subdirectory(aes)
|
|
add_subdirectory(cipher)
|
|
if (NOT WIN32)
|
|
add_subdirectory(fuzz)
|
|
endif()
|
|
add_subdirectory(hash)
|
|
add_subdirectory(pkey)
|
|
add_subdirectory(../tf-psa-crypto/programs/psa ../tf-psa-crypto/programs/psa)
|
|
add_subdirectory(random)
|
|
add_subdirectory(ssl)
|
|
add_subdirectory(test)
|
|
add_subdirectory(util)
|
|
add_subdirectory(x509)
|