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.
 
 
 
 
 
 

32 line
320 B

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