Sign in
boringssl
/
boringssl.git
/
81257cb2e0cbb80edd8a368a797ee95763a05fc3
/
.
/
crypto
/
chacha
/
CMakeLists.txt
blob: d23ecb1d1c1774841add41cdbaba631875b7c180 [
file
]
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}
)