Sign in
boringssl
/
boringssl
/
8e16b6e6582810de46b4db7926a2462be8e789d2
/
.
/
crypto
/
chacha
/
CMakeLists.txt
blob: d23ecb1d1c1774841add41cdbaba631875b7c180 [
file
] [
log
] [
blame
]
include_directories(. .. ../../include)
if (${ARCH} STREQUAL "arm")
set(
CHACHA_ARCH_SOURCES
chacha_vec_arm.S
)
endif()
add_library(
chacha
OBJECT
chacha_generic.c
chacha_vec.c
${CHACHA_ARCH_SOURCES}
)