No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

25 líneas
301 B

  1. include_directories(. .. ../../include)
  2. if (${ARCH} STREQUAL "x86_64")
  3. set(
  4. RAND_ARCH_SOURCES
  5. rdrand-x86_64.${ASM_EXT}
  6. )
  7. endif()
  8. add_library(
  9. rand
  10. OBJECT
  11. rand.c
  12. urandom.c
  13. windows.c
  14. hwrand.c
  15. ${RAND_ARCH_SOURCES}
  16. )
  17. perlasm(rdrand-x86_64.${ASM_EXT} asm/rdrand-x86_64.pl)