Sign in
pigweed
/
third_party
/
boringssl
/
boringssl
/
0e782a9eb3feeb0cd9445be79cedbf9ce767dc45
/
.
/
crypto
/
poly1305
/
CMakeLists.txt
blob: bb0c1e4442a7e499266e38134eafcebd6589e706 [
file
] [
log
] [
blame
]
include_directories(. .. ../../include)
if (${ARCH} STREQUAL "arm")
set(
POLY1305_ARCH_SOURCES
poly1305_arm_asm.S
)
endif()
add_library(
poly1305
OBJECT
poly1305.c
poly1305_arm.c
poly1305_vec.c
${POLY1305_ARCH_SOURCES}
)