您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

21 行
219 B

  1. include_directories(. .. ../../include)
  2. if (${ARCH} STREQUAL "arm")
  3. set(
  4. CHACHA_ARCH_SOURCES
  5. chacha_vec_arm.S
  6. )
  7. endif()
  8. add_library(
  9. chacha
  10. OBJECT
  11. chacha_generic.c
  12. chacha_vec.c
  13. ${CHACHA_ARCH_SOURCES}
  14. )