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.
 
 
 
 
 
 

20 line
222 B

  1. include_directories(../../include)
  2. if (${ARCH} STREQUAL "arm")
  3. set(
  4. CURVE25519_ARCH_SOURCES
  5. asm/x25519-asm-arm.S
  6. )
  7. endif()
  8. add_library(
  9. curve25519
  10. OBJECT
  11. spake25519.c
  12. ${CURVE25519_ARCH_SOURCES}
  13. )