0b635c52b2
Currently far from passing and I haven't even tried with a leak checker yet. Also bn_test is slow. Change-Id: I4fe2783aa5f7897839ca846062ae7e4a367d2469 Reviewed-on: https://boringssl-review.googlesource.com/4794 Reviewed-by: Adam Langley <agl@google.com>
22 lines
225 B
CMake
22 lines
225 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_library(
|
|
dsa
|
|
|
|
OBJECT
|
|
|
|
dsa.c
|
|
dsa_impl.c
|
|
dsa_asn1.c
|
|
)
|
|
|
|
add_executable(
|
|
dsa_test
|
|
|
|
dsa_test.c
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(dsa_test crypto)
|