5a3162a521
Change-Id: I50db70385634c51ed692ac0ebf9732f46130ca41 Reviewed-on: https://boringssl-review.googlesource.com/4125 Reviewed-by: Adam Langley <agl@google.com>
19 lines
172 B
CMake
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)
|