73415b6aa0
arm_arch.h is included from ARM asm files, but lives in crypto/, not openssl/include/. Since the asm files are often built from a different location than their position in the source tree, relative include paths are unlikely to work so, rather than having crypto/ be a de-facto, second global include path, this change moves arm_arch.h to include/openssl/. It also removes entries from many include paths because they should be needed as relative includes are always based on the locations of the source file. Change-Id: I638ff43d641ca043a4fc06c0d901b11c6ff73542 Reviewed-on: https://boringssl-review.googlesource.com/5746 Reviewed-by: Adam Langley <agl@google.com>
46 lines
518 B
CMake
46 lines
518 B
CMake
include_directories(../../include)
|
|
|
|
add_library(
|
|
asn1
|
|
|
|
OBJECT
|
|
|
|
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
|
|
t_pkey.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
|
|
)
|