Jamfile.v2 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  3. #
  4. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #
  7. lib socket ; # SOLARIS
  8. lib nsl ; # SOLARIS
  9. lib ws2_32 ; # NT
  10. lib mswsock ; # NT
  11. lib ipv6 ; # HPUX
  12. lib network ; # HAIKU
  13. project
  14. : requirements
  15. <library>/boost/system//boost_system
  16. <library>/boost/chrono//boost_chrono
  17. <define>BOOST_ALL_NO_LIB=1
  18. <threading>multi
  19. <target-os>solaris:<library>socket
  20. <target-os>solaris:<library>nsl
  21. <target-os>windows:<define>_WIN32_WINNT=0x0501
  22. <target-os>windows,<toolset>gcc:<library>ws2_32
  23. <target-os>windows,<toolset>gcc:<library>mswsock
  24. <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
  25. <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
  26. <target-os>hpux:<library>ipv6
  27. <target-os>haiku:<library>network
  28. ;
  29. exe composed_1 : composed_1.cpp ;
  30. exe composed_2 : composed_2.cpp ;
  31. exe composed_3 : composed_3.cpp ;
  32. exe composed_4 : composed_4.cpp ;
  33. exe composed_5 : composed_5.cpp ;
  34. exe composed_6 : composed_6.cpp ;
  35. exe composed_7 : composed_7.cpp ;
  36. exe composed_8 : composed_8.cpp ;