]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/example/cpp03/local/Jamfile.v2
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / local / Jamfile.v2
CommitLineData
7c673cae 1#
92f5a8d4 2# Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
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
11fdf7f2
TL
8lib socket ; # SOLARIS
9lib nsl ; # SOLARIS
10lib ws2_32 ; # NT
11lib mswsock ; # NT
12lib ipv6 ; # HPUX
13lib network ; # HAIKU
7c673cae
FG
14
15exe connect_pair
16 : connect_pair.cpp
17 /boost/system//boost_system
11fdf7f2 18 /boost/chrono//boost_chrono
7c673cae
FG
19 /boost/thread//boost_thread
20 : <define>BOOST_ALL_NO_LIB=1
21 <threading>multi
11fdf7f2
TL
22 <target-os>solaris:<library>socket
23 <target-os>solaris:<library>nsl
24 <target-os>windows:<define>_WIN32_WINNT=0x0501
25 <target-os>windows,<toolset>gcc:<library>ws2_32
26 <target-os>windows,<toolset>gcc:<library>mswsock
27 <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
28 <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
29 <target-os>hpux:<library>ipv6
30 <target-os>haiku:<library>network
7c673cae
FG
31 ;
32
33exe iostream_client
34 : iostream_client.cpp
35 /boost/system//boost_system
11fdf7f2 36 /boost/chrono//boost_chrono
7c673cae
FG
37 : <define>BOOST_ALL_NO_LIB=1
38 <threading>multi
11fdf7f2
TL
39 <target-os>solaris:<library>socket
40 <target-os>solaris:<library>nsl
41 <target-os>windows:<define>_WIN32_WINNT=0x0501
42 <target-os>windows,<toolset>gcc:<library>ws2_32
43 <target-os>windows,<toolset>gcc:<library>mswsock
44 <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
45 <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
46 <target-os>hpux:<library>ipv6
47 <target-os>haiku:<library>network
7c673cae
FG
48 ;
49
50exe stream_client
51 : stream_client.cpp
52 /boost/system//boost_system
11fdf7f2 53 /boost/chrono//boost_chrono
7c673cae
FG
54 : <define>BOOST_ALL_NO_LIB=1
55 <threading>multi
11fdf7f2
TL
56 <target-os>solaris:<library>socket
57 <target-os>solaris:<library>nsl
58 <target-os>windows:<define>_WIN32_WINNT=0x0501
59 <target-os>windows,<toolset>gcc:<library>ws2_32
60 <target-os>windows,<toolset>gcc:<library>mswsock
61 <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
62 <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
63 <target-os>hpux:<library>ipv6
64 <target-os>haiku:<library>network
7c673cae
FG
65 ;
66
67exe stream_server
68 : stream_server.cpp
69 /boost/system//boost_system
11fdf7f2 70 /boost/chrono//boost_chrono
7c673cae
FG
71 : <define>BOOST_ALL_NO_LIB=1
72 <threading>multi
11fdf7f2
TL
73 <target-os>solaris:<library>socket
74 <target-os>solaris:<library>nsl
75 <target-os>windows:<define>_WIN32_WINNT=0x0501
76 <target-os>windows,<toolset>gcc:<library>ws2_32
77 <target-os>windows,<toolset>gcc:<library>mswsock
78 <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
79 <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
80 <target-os>hpux:<library>ipv6
81 <target-os>haiku:<library>network
7c673cae 82 ;