boringssl/crypto/ec/CMakeLists.txt
David Benjamin 67be048e1a Convert ec_test to C++
Change-Id: I5e25ddbc87370b58d9b6fc410f51e259947df8dd
Reviewed-on: https://boringssl-review.googlesource.com/4468
Reviewed-by: Adam Langley <agl@google.com>
2015-04-28 21:00:34 +00:00

33 lines
346 B
CMake

include_directories(. .. ../../include)
add_library(
ec
OBJECT
ec.c
ec_asn1.c
ec_key.c
ec_montgomery.c
oct.c
p256-64.c
util-64.c
simple.c
wnaf.c
)
add_executable(
example_mul
example_mul.c
)
add_executable(
ec_test
ec_test.cc
)
target_link_libraries(example_mul crypto)
target_link_libraries(ec_test crypto)