summaryrefslogtreecommitdiffstats
path: root/src/crypto/poly1305/CMakeLists.txt
blob: 674d9f68290afa67b45ffd156376db50b97abcf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
include_directories(../../include)

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}
)

add_executable(
  poly1305_test

  poly1305_test.cc
  $<TARGET_OBJECTS:test_support>
)

target_link_libraries(poly1305_test crypto)