mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-21 21:36:21 +01:00
- Added CMake makefiles as alternative to regular Makefiles.
- Added preliminary Code Coverage tests for AES, ARC4, Base64, MPI, SHA-family, MD-family and HMAC-SHA-family.
This commit is contained in:
parent
48eab260e9
commit
367dae44b2
27 changed files with 4201 additions and 0 deletions
12
programs/test/CMakeLists.txt
Normal file
12
programs/test/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
add_executable(selftest selftest.c)
|
||||
target_link_libraries(selftest polarssl)
|
||||
|
||||
add_executable(benchmark benchmark.c)
|
||||
target_link_libraries(benchmark polarssl)
|
||||
|
||||
add_executable(ssl_test ssl_test.c)
|
||||
target_link_libraries(ssl_test polarssl)
|
||||
|
||||
add_executable(ssl_cert_test ssl_cert_test.c)
|
||||
target_link_libraries(ssl_cert_test polarssl)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue