boringssl/crypto/ecdsa/CMakeLists.txt

22 lines
221 B
CMake
Raw Normal View History

include_directories(../../include)
add_library(
ecdsa
OBJECT
ecdsa.c
ecdsa_asn1.c
)
add_executable(
ecdsa_test
ecdsa_test.cc
$<TARGET_OBJECTS:test_support>
)
target_link_libraries(ecdsa_test crypto)