Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

CMakeLists.txt 616 B

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