Jamfile.v2 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. exe server
  14. : connection.cpp
  15. connection_manager.cpp
  16. main.cpp
  17. mime_types.cpp
  18. reply.cpp
  19. request_handler.cpp
  20. request_parser.cpp
  21. server.cpp
  22. /boost/system//boost_system
  23. /boost/thread//boost_thread
  24. : <define>BOOST_ALL_NO_LIB=1
  25. <threading>multi
  26. <target-os>solaris:<library>socket
  27. <target-os>solaris:<library>nsl
  28. <target-os>windows:<define>_WIN32_WINNT=0x0501
  29. <target-os>windows,<toolset>gcc:<library>ws2_32
  30. <target-os>windows,<toolset>gcc:<library>mswsock
  31. <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
  32. <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
  33. <target-os>hpux:<library>ipv6
  34. <target-os>haiku:<library>network
  35. ;