boringssl/crypto/evp/CMakeLists.txt
David Benjamin 0f86965ca0 Rename evp_test to evp_extra_test.
This matches how upstream imported that test. evp_test will be used for
the subset of upstream's evp_test which land in our crypto/evp layer.
(Some of crypto/evp is in crypto/cipher for us, so those tests will be
in a ported cipher_test.)

Change-Id: Ic899442794b66350e73a706bb7c77a6ff3d2564b
Reviewed-on: https://boringssl-review.googlesource.com/4702
Reviewed-by: Adam Langley <agl@google.com>
2015-05-11 21:35:00 +00:00

39 lines
434 B
CMake

include_directories(. .. ../../include)
add_library(
evp
OBJECT
algorithm.c
asn1.c
digestsign.c
evp.c
evp_ctx.c
p_dsa_asn1.c
p_ec.c
p_ec_asn1.c
p_hmac.c
p_hmac_asn1.c
p_rsa.c
p_rsa_asn1.c
pbkdf.c
sign.c
)
add_executable(
evp_extra_test
evp_extra_test.cc
)
add_executable(
pbkdf_test
pbkdf_test.cc
)
target_link_libraries(evp_extra_test crypto)
target_link_libraries(pbkdf_test crypto)