2015-08-25 02:03:17 +01:00
|
|
|
include_directories(../../include)
|
2014-06-20 20:00:00 +01:00
|
|
|
|
|
|
|
add_library(
|
2015-01-29 00:37:10 +00:00
|
|
|
asn1
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2015-01-29 00:37:10 +00:00
|
|
|
OBJECT
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2015-01-29 00:37:10 +00:00
|
|
|
a_bitstr.c
|
|
|
|
a_bool.c
|
|
|
|
a_bytes.c
|
|
|
|
a_d2i_fp.c
|
|
|
|
a_dup.c
|
|
|
|
a_enum.c
|
|
|
|
a_gentm.c
|
|
|
|
a_i2d_fp.c
|
|
|
|
a_int.c
|
|
|
|
a_mbstr.c
|
|
|
|
a_object.c
|
|
|
|
a_octet.c
|
|
|
|
a_print.c
|
|
|
|
a_strnid.c
|
|
|
|
a_time.c
|
|
|
|
a_type.c
|
|
|
|
a_utctm.c
|
|
|
|
a_utf8.c
|
|
|
|
asn1_lib.c
|
|
|
|
asn1_par.c
|
|
|
|
asn_pack.c
|
|
|
|
bio_asn1.c
|
|
|
|
bio_ndef.c
|
|
|
|
f_enum.c
|
|
|
|
f_int.c
|
|
|
|
f_string.c
|
|
|
|
t_bitst.c
|
|
|
|
tasn_dec.c
|
|
|
|
tasn_enc.c
|
|
|
|
tasn_fre.c
|
|
|
|
tasn_new.c
|
|
|
|
tasn_prn.c
|
|
|
|
tasn_typ.c
|
|
|
|
tasn_utl.c
|
|
|
|
x_bignum.c
|
|
|
|
x_long.c
|
2014-06-20 20:00:00 +01:00
|
|
|
)
|
2016-02-29 20:42:59 +00:00
|
|
|
|
|
|
|
add_executable(
|
|
|
|
asn1_test
|
|
|
|
|
|
|
|
asn1_test.cc
|
|
|
|
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(asn1_test crypto)
|
|
|
|
add_dependencies(all_tests asn1_test)
|