]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/asio/example/cpp03/http/server3/Jamfile.v2
c60723316493c88db1ffbb316fafb1588aa4156f
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / http / server3 / Jamfile.v2
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
8 lib socket ; # SOLARIS
9 lib nsl ; # SOLARIS
10 lib ws2_32 ; # NT
11 lib mswsock ; # NT
12 lib ipv6 ; # HPUX
13 lib network ; # HAIKU
14
15 exe server
16 : connection.cpp
17 main.cpp
18 mime_types.cpp
19 reply.cpp
20 request_handler.cpp
21 request_parser.cpp
22 server.cpp
23 /boost/system//boost_system
24 /boost/chrono//boost_chrono
25 /boost/thread//boost_thread
26 : <define>BOOST_ALL_NO_LIB=1
27 <threading>multi
28 <target-os>solaris:<library>socket
29 <target-os>solaris:<library>nsl
30 <target-os>windows:<define>_WIN32_WINNT=0x0501
31 <target-os>windows,<toolset>gcc:<library>ws2_32
32 <target-os>windows,<toolset>gcc:<library>mswsock
33 <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
34 <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
35 <target-os>hpux:<library>ipv6
36 <target-os>haiku:<library>network
37 ;