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.
 
 
 
 
 
 

19 lines
221 B

  1. include_directories(../include)
  2. add_executable(
  3. bssl
  4. args.cc
  5. client.cc
  6. const.cc
  7. digest.cc
  8. pkcs12.cc
  9. rand.cc
  10. server.cc
  11. speed.cc
  12. tool.cc
  13. transport_common.cc
  14. )
  15. target_link_libraries(bssl ssl crypto)