Sign in
boringssl
/
boringssl
/
5db5d4e2b075f46ca80698a8baf168b8b7e5d60f
/
.
/
crypto
/
poly1305
/
CMakeLists.txt
blob: 65d7dbbe1435d31ebb039558ca0d5a409f4a25e6 [
file
]
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}
)