CMakeLists.txt 875 B

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