074e3d2dfd
Change-Id: I119929177d3c2135778b567f89923784a3a730ae Reviewed-on: https://boringssl-review.googlesource.com/4706 Reviewed-by: Adam Langley <agl@google.com>
39 lines
433 B
CMake
39 lines
433 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_library(
|
|
cipher
|
|
|
|
OBJECT
|
|
|
|
cipher.c
|
|
derive_key.c
|
|
aead.c
|
|
|
|
e_null.c
|
|
e_rc2.c
|
|
e_rc4.c
|
|
e_des.c
|
|
e_aes.c
|
|
e_chacha20poly1305.c
|
|
|
|
tls_cbc.c
|
|
e_tls.c
|
|
e_ssl3.c
|
|
)
|
|
|
|
add_executable(
|
|
cipher_test
|
|
|
|
cipher_test.c
|
|
)
|
|
|
|
add_executable(
|
|
aead_test
|
|
|
|
aead_test.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(cipher_test crypto)
|
|
target_link_libraries(aead_test crypto)
|