Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / boringssl / src / crypto / poly1305 / CMakeLists.txt
1 include_directories(. .. ../../include)
2
3 if (${ARCH} STREQUAL "arm")
4         set(
5                 POLY1305_ARCH_SOURCES
6
7                 poly1305_arm_asm.S
8         )
9 endif()
10
11 add_library(
12         poly1305
13
14         OBJECT
15
16         poly1305.c
17         poly1305_arm.c
18         poly1305_vec.c
19
20         ${POLY1305_ARCH_SOURCES}
21 )