You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 line
251 B

  1. include_directories(. .. ../../include)
  2. if (${ARCH} STREQUAL "arm")
  3. set(
  4. POLY1305_ARCH_SOURCES
  5. poly1305_arm_asm.S
  6. )
  7. endif()
  8. add_library(
  9. poly1305
  10. OBJECT
  11. poly1305.c
  12. poly1305_arm.c
  13. poly1305_vec.c
  14. ${POLY1305_ARCH_SOURCES}
  15. )