boringssl/decrepit/ripemd/CMakeLists.txt
Adam Langley ff452c1d0e Add RIPEMD160 support in decrepit.
This version is taken from OpenSSL 1.0.2 with tweaks to support the
changes that we have made to md32_common.h. None of the assembly
implementations have been imported.

This makes supporting nmap easier.

Change-Id: Iae9241abdbc9021cc6bc35a65b40c3d739011ccc
Reviewed-on: https://boringssl-review.googlesource.com/7402
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-09 19:37:14 +00:00

22 lines
303 B
CMake

include_directories(../../include)
add_library(
ripemd_decrepit
OBJECT
ripemd.c
)
add_executable(
ripemd_test
ripemd_test.cc
$<TARGET_OBJECTS:test_support>
)
target_link_libraries(ripemd_test crypto)
target_link_libraries(ripemd_test decrepit)
add_dependencies(all_tests ripemd_test)