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.

CMakeLists.txt 271 B

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