You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. include_directories(../../include)
  2. add_library(
  3. x509
  4. OBJECT
  5. a_digest.c
  6. a_sign.c
  7. a_strex.c
  8. a_verify.c
  9. algorithm.c
  10. asn1_gen.c
  11. by_dir.c
  12. by_file.c
  13. i2d_pr.c
  14. pkcs7.c
  15. rsa_pss.c
  16. t_crl.c
  17. t_req.c
  18. t_x509.c
  19. t_x509a.c
  20. x509.c
  21. x509_att.c
  22. x509_cmp.c
  23. x509_d2.c
  24. x509_def.c
  25. x509_ext.c
  26. x509_lu.c
  27. x509_obj.c
  28. x509_r2x.c
  29. x509_req.c
  30. x509_set.c
  31. x509_trs.c
  32. x509_txt.c
  33. x509_v3.c
  34. x509_vfy.c
  35. x509_vpm.c
  36. x509cset.c
  37. x509name.c
  38. x509rset.c
  39. x509spki.c
  40. x509type.c
  41. x_algor.c
  42. x_all.c
  43. x_attrib.c
  44. x_crl.c
  45. x_exten.c
  46. x_info.c
  47. x_name.c
  48. x_pkey.c
  49. x_pubkey.c
  50. x_req.c
  51. x_sig.c
  52. x_spki.c
  53. x_val.c
  54. x_x509.c
  55. x_x509a.c
  56. )
  57. add_executable(
  58. pkcs7_test
  59. pkcs7_test.c
  60. $<TARGET_OBJECTS:test_support>
  61. )
  62. add_executable(
  63. x509_test
  64. x509_test.cc
  65. $<TARGET_OBJECTS:test_support>
  66. )
  67. target_link_libraries(pkcs7_test crypto)
  68. target_link_libraries(x509_test crypto)
  69. add_dependencies(all_tests pkcs7_test x509_test)