699e55bb0e
These are only used by crypto/asn1 and not externally. Change-Id: I2e6a28828fd81a4e3421eed1e98f0a65197f4b88 Reviewed-on: https://boringssl-review.googlesource.com/13868 Reviewed-by: David Benjamin <davidben@google.com> Commit-Queue: David Benjamin <davidben@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
53 lines
633 B
CMake
53 lines
633 B
CMake
include_directories(../../include)
|
|
|
|
add_library(
|
|
asn1
|
|
|
|
OBJECT
|
|
|
|
a_bitstr.c
|
|
a_bool.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
|
|
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_typ.c
|
|
tasn_utl.c
|
|
time_support.c
|
|
x_bignum.c
|
|
x_long.c
|
|
)
|
|
|
|
add_executable(
|
|
asn1_test
|
|
|
|
asn1_test.cc
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(asn1_test crypto)
|
|
add_dependencies(all_tests asn1_test)
|