0ac86b0220
(Imported from upstream's 4b87706d20f0a2fdf2e8f1b90256e141c487ef47 and eceef8fb865eb5de329b27ea472d4fdea4c290fe.) Dead code. Change-Id: I58120c3a9c42cb9db27f404774778222c3bb642a Reviewed-on: https://boringssl-review.googlesource.com/2479 Reviewed-by: Adam Langley <agl@google.com>
53 lines
573 B
CMake
53 lines
573 B
CMake
include_directories(. .. ../include)
|
|
|
|
add_subdirectory(pqueue)
|
|
|
|
add_library(
|
|
ssl
|
|
STATIC
|
|
|
|
d1_both.c
|
|
d1_clnt.c
|
|
d1_lib.c
|
|
d1_meth.c
|
|
d1_pkt.c
|
|
d1_srtp.c
|
|
d1_srvr.c
|
|
s23_clnt.c
|
|
s23_lib.c
|
|
s23_meth.c
|
|
s23_pkt.c
|
|
s23_srvr.c
|
|
s3_both.c
|
|
s3_cbc.c
|
|
s3_clnt.c
|
|
s3_enc.c
|
|
s3_lib.c
|
|
s3_meth.c
|
|
s3_pkt.c
|
|
s3_srvr.c
|
|
ssl_algs.c
|
|
ssl_asn1.c
|
|
ssl_cert.c
|
|
ssl_ciph.c
|
|
ssl_error.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.c
|
|
)
|
|
|
|
target_link_libraries(ssl_test ssl crypto)
|