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
239 B

  1. include_directories(../include)
  2. add_executable(
  3. bssl
  4. args.cc
  5. client.cc
  6. const.cc
  7. pkcs12.cc
  8. speed.cc
  9. tool.cc
  10. )
  11. if (APPLE OR WIN32)
  12. target_link_libraries(bssl ssl crypto)
  13. else()
  14. target_link_libraries(bssl ssl crypto -lrt)
  15. endif()