Revert "programs, tests: Depend only on libmbedcrypto"

This reverts commit 986a15199d.
This commit is contained in:
Gilles Peskine 2020-02-26 19:05:31 +01:00 committed by Ronald Cron
parent 722a7e6940
commit 4fa9f9f744
11 changed files with 38 additions and 40 deletions

View file

@ -1,11 +1,11 @@
add_executable(gen_random_havege gen_random_havege.c)
target_link_libraries(gen_random_havege mbedcrypto)
target_link_libraries(gen_random_havege mbedtls)
add_executable(gen_random_ctr_drbg gen_random_ctr_drbg.c)
target_link_libraries(gen_random_ctr_drbg mbedcrypto)
target_link_libraries(gen_random_ctr_drbg mbedtls)
add_executable(gen_entropy gen_entropy.c)
target_link_libraries(gen_entropy mbedcrypto)
target_link_libraries(gen_entropy mbedtls)
install(TARGETS gen_random_havege gen_random_ctr_drbg gen_entropy
DESTINATION "bin"