mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2024-12-26 09:19:15 +00:00
8392f189e2
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
16 lines
354 B
CMake
16 lines
354 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(random)
|
|
add_subdirectory(ssl)
|
|
add_subdirectory(test)
|
|
add_subdirectory(util)
|
|
add_subdirectory(x509)
|