CMakeLists.txt 746 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. add_executable(testbee2
  2. core/b64_test.c
  3. core/dec_test.c
  4. core/der_test.c
  5. core/hex_test.c
  6. core/mem_test.c
  7. core/mt_test.c
  8. core/obj_test.c
  9. core/oid_test.c
  10. core/prng_test.c
  11. core/rng_test.c
  12. core/str_test.c
  13. core/tm_test.c
  14. core/u16_test.c
  15. core/u32_test.c
  16. core/u64_test.c
  17. core/util_test.c
  18. crypto/bake_test.c
  19. crypto/bash_bench.c
  20. crypto/bash_test.c
  21. crypto/bels_test.c
  22. crypto/belt_bench.c
  23. crypto/belt_test.c
  24. crypto/bign_test.c
  25. crypto/botp_test.c
  26. crypto/bpki_test.c
  27. crypto/brng_test.c
  28. crypto/btok_test.c
  29. crypto/dstu_test.c
  30. crypto/g12s_test.c
  31. crypto/pfok_test.c
  32. math/pri_test.c
  33. math/zz_test.c
  34. math/word_test.c
  35. math/ecp_test.c
  36. math/ecp_bench.c
  37. test.c
  38. )
  39. target_link_libraries(testbee2 bee2_static)
  40. add_test(testbee2 testbee2)