25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
667 B

  1. include_directories(../../include)
  2. add_library(
  3. asn1
  4. OBJECT
  5. a_bitstr.c
  6. a_bool.c
  7. a_bytes.c
  8. a_d2i_fp.c
  9. a_dup.c
  10. a_enum.c
  11. a_gentm.c
  12. a_i2d_fp.c
  13. a_int.c
  14. a_mbstr.c
  15. a_object.c
  16. a_octet.c
  17. a_print.c
  18. a_strnid.c
  19. a_time.c
  20. a_type.c
  21. a_utctm.c
  22. a_utf8.c
  23. asn1_lib.c
  24. asn1_par.c
  25. asn_pack.c
  26. bio_asn1.c
  27. bio_ndef.c
  28. f_enum.c
  29. f_int.c
  30. f_string.c
  31. t_bitst.c
  32. tasn_dec.c
  33. tasn_enc.c
  34. tasn_fre.c
  35. tasn_new.c
  36. tasn_prn.c
  37. tasn_typ.c
  38. tasn_utl.c
  39. x_bignum.c
  40. x_long.c
  41. )
  42. add_executable(
  43. asn1_test
  44. asn1_test.cc
  45. $<TARGET_OBJECTS:test_support>
  46. )
  47. target_link_libraries(asn1_test crypto)
  48. add_dependencies(all_tests asn1_test)