25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
246 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. )