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.
 
 
 
 
 
 

33 line
346 B

  1. include_directories(. .. ../../include)
  2. add_library(
  3. ec
  4. OBJECT
  5. ec.c
  6. ec_asn1.c
  7. ec_key.c
  8. ec_montgomery.c
  9. oct.c
  10. p256-64.c
  11. util-64.c
  12. simple.c
  13. wnaf.c
  14. )
  15. add_executable(
  16. example_mul
  17. example_mul.c
  18. )
  19. add_executable(
  20. ec_test
  21. ec_test.cc
  22. )
  23. target_link_libraries(example_mul crypto)
  24. target_link_libraries(ec_test crypto)