0b635c52b2
Currently far from passing and I haven't even tried with a leak checker yet. Also bn_test is slow. Change-Id: I4fe2783aa5f7897839ca846062ae7e4a367d2469 Reviewed-on: https://boringssl-review.googlesource.com/4794 Reviewed-by: Adam Langley <agl@google.com>
48 lines
568 B
CMake
48 lines
568 B
CMake
include_directories(. .. ../include)
|
|
|
|
add_subdirectory(pqueue)
|
|
|
|
add_library(
|
|
ssl
|
|
|
|
d1_both.c
|
|
d1_clnt.c
|
|
d1_lib.c
|
|
d1_meth.c
|
|
d1_pkt.c
|
|
d1_srtp.c
|
|
d1_srvr.c
|
|
s3_both.c
|
|
s3_clnt.c
|
|
s3_enc.c
|
|
s3_lib.c
|
|
s3_meth.c
|
|
s3_pkt.c
|
|
s3_srvr.c
|
|
ssl_aead_ctx.c
|
|
ssl_algs.c
|
|
ssl_asn1.c
|
|
ssl_cert.c
|
|
ssl_cipher.c
|
|
ssl_lib.c
|
|
ssl_rsa.c
|
|
ssl_sess.c
|
|
ssl_stat.c
|
|
ssl_txt.c
|
|
t1_enc.c
|
|
t1_lib.c
|
|
t1_reneg.c
|
|
|
|
$<TARGET_OBJECTS:pqueue>
|
|
)
|
|
|
|
add_executable(
|
|
ssl_test
|
|
|
|
ssl_test.cc
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(ssl_test ssl crypto)
|