Nagram/TMessagesProj/jni/boringssl/crypto/poly1305/CMakeLists.txt

22 lines
246 B
CMake
Raw Normal View History

2018-07-30 02:07:02 +00:00
include_directories(../../include)
2015-09-24 20:52:02 +00:00
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}
)