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 lines
351 B

  1. include_directories(. .. ../../include)
  2. add_library(
  3. bio
  4. OBJECT
  5. bio.c
  6. bio_error.c
  7. bio_mem.c
  8. buffer.c
  9. connect.c
  10. fd.c
  11. file.c
  12. hexdump.c
  13. pair.c
  14. printf.c
  15. socket.c
  16. socket_helper.c
  17. )
  18. add_executable(
  19. bio_test
  20. bio_test.c
  21. )
  22. target_link_libraries(bio_test crypto)
  23. if (WIN32)
  24. target_link_libraries(bio_test ws2_32)
  25. endif()