Sign in
boringssl
/
boringssl.git
/
d1263b05a9fa89ebac3bd43bfe739dc719831d00
/
.
/
crypto
/
ecdh
/
CMakeLists.txt
blob: 3d95180a7686cbe48584dd4381d4383e561513bf [
file
] [
log
] [
blame
]
include_directories(../../include)
add_library(
ecdh
OBJECT
ecdh.c
)
add_executable(
ecdh_test
ecdh_test.cc
$<TARGET_OBJECTS:test_support>
)
target_link_libraries(ecdh_test crypto)
add_dependencies(all_tests ecdh_test)