boringssl/crypto/chacha/CMakeLists.txt

21 lines
225 B
CMake
Raw Normal View History

include_directories(../../include)
2014-06-20 20:00:00 +01:00
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
)