Sign in
boringssl
/
boringssl.git
/
5b1f07e9e7c85d76db4dafbc03cfccc4ee3fdf4e
/
.
/
crypto
/
ecdh
/
CMakeLists.txt
blob: 3d95180a7686cbe48584dd4381d4383e561513bf [
file
]
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)