]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/example/cpp03/tutorial/Jamfile
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / tutorial / Jamfile
CommitLineData
7c673cae
FG
1#
2# Copyright (c) 2003-2016 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
8subproject libs/asio/example/tutorial ;
9
10project boost : $(BOOST_ROOT) ;
11
12if $(UNIX)
13{
14 switch $(JAMUNAME)
15 {
16 case SunOS* :
17 {
18 SOCKET_LIBS = <find-library>socket <find-library>nsl ;
19 }
20 }
21}
22
23template asio_tutorial
24 : <lib>@boost/libs/thread/build/boost_thread
25 <lib>@boost/libs/system/build/boost_system
26 : <include>$(BOOST_ROOT)
27 <include>../../../..
28 <define>BOOST_ALL_NO_LIB=1
29 <threading>multi
30 <mingw><*><find-library>ws2_32
31 <mingw><*><find-library>mswsock
32 $(SOCKET_LIBS)
33 ;
34
35exe timer1 : <template>asio_tutorial timer1/timer.cpp ;
36exe timer2 : <template>asio_tutorial timer2/timer.cpp ;
37exe timer3 : <template>asio_tutorial timer3/timer.cpp ;
38exe timer4 : <template>asio_tutorial timer4/timer.cpp ;
39exe timer5 : <template>asio_tutorial timer5/timer.cpp ;
40exe daytime1_client : <template>asio_tutorial daytime1/client.cpp ;
41exe daytime2_server : <template>asio_tutorial daytime2/server.cpp ;
42exe daytime3_server : <template>asio_tutorial daytime3/server.cpp ;
43exe daytime4_client : <template>asio_tutorial daytime4/client.cpp ;
44exe daytime5_server : <template>asio_tutorial daytime5/server.cpp ;
45exe daytime6_server : <template>asio_tutorial daytime6/server.cpp ;
46exe daytime7_server : <template>asio_tutorial daytime7/server.cpp ;