boringssl/crypto/chacha/CMakeLists.txt

21 lines
230 B
CMake
Raw Normal View History

2014-06-20 20:00:00 +01:00
include_directories(. .. ../../include)
if (${ARCH} STREQUAL "arm")
set(
CHACHA_ARCH_SOURCES
2014-06-20 20:00:00 +01:00
chacha_vec_arm.S
)
2014-06-20 20:00:00 +01:00
endif()
add_library(
chacha
2014-06-20 20:00:00 +01:00
OBJECT
2014-06-20 20:00:00 +01:00
chacha_generic.c
chacha_vec.c
2014-06-20 20:00:00 +01:00
${CHACHA_ARCH_SOURCES}
2014-06-20 20:00:00 +01:00
)