boringssl/crypto/hmac/CMakeLists.txt
David Benjamin 5a3162a521 Convert hmac_test to C++.
Change-Id: I50db70385634c51ed692ac0ebf9732f46130ca41
Reviewed-on: https://boringssl-review.googlesource.com/4125
Reviewed-by: Adam Langley <agl@google.com>
2015-03-31 23:13:49 +00:00

19 lines
172 B
CMake

include_directories(. .. ../../include)
add_library(
hmac
OBJECT
hmac.c
)
add_executable(
hmac_test
hmac_test.cc
)
target_link_libraries(hmac_test crypto)