boringssl/crypto/evp/CMakeLists.txt
Adam Langley 95c29f3cd1 Inital import.
Initial fork from f2d678e6e89b6508147086610e985d4e8416e867 (1.0.2 beta).

(This change contains substantial changes from the original and
effectively starts a new history.)
2014-06-20 13:17:32 -07:00

31 lines
305 B
CMake

include_directories(. .. ../../include)
add_library(
evp
OBJECT
asn1.c
digestsign.c
evp.c
evp_ctx.c
evp_error.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(
example_sign
example_sign.c
)
target_link_libraries(example_sign crypto)