]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/asio/example/cpp11/http/server/Jamfile
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / asio / example / cpp11 / http / server / Jamfile
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
8 subproject libs/asio/example/http/server ;
9
10 project boost : $(BOOST_ROOT) ;
11
12 if $(UNIX)
13 {
14 switch $(JAMUNAME)
15 {
16 case SunOS* :
17 {
18 SOCKET_LIBS = <find-library>socket <find-library>nsl ;
19 }
20 }
21 }
22
23 exe http_server
24 : <lib>@boost/libs/thread/build/boost_thread
25 <lib>@boost/libs/system/build/boost_system
26 connection.cpp
27 connection_manager.cpp
28 main.cpp
29 mime_types.cpp
30 reply.cpp
31 request_handler.cpp
32 request_parser.cpp
33 server.cpp
34 : <include>$(BOOST_ROOT)
35 <include>../../../../..
36 <define>BOOST_ALL_NO_LIB=1
37 <threading>multi
38 <mingw><*><find-library>ws2_32
39 <mingw><*><find-library>mswsock
40 $(SOCKET_LIBS)
41 ;