]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/flyweight/example/Jamfile.v2
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / flyweight / example / Jamfile.v2
1 # Boost.Flyweight examples Jamfile
2 #
3 # Copyright 2006-2014 Joaquín M López Muñoz.
4 # Distributed under the Boost Software License, Version 1.0.
5 # (See accompanying file LICENSE_1_0.txt or copy at
6 # http://www.boost.org/LICENSE_1_0.txt)
7 #
8 # See http://www.boost.org/libs/flyweight for library home page.
9
10 project
11 : requirements
12 <os>LINUX:<threading>multi
13 ;
14
15 exe basic
16 : basic.cpp
17 : <include>$(BOOST_ROOT)
18 ;
19
20 exe composite
21 : composite.cpp
22 : <include>$(BOOST_ROOT)
23 ;
24
25 exe custom_factory
26 : custom_factory.cpp
27 : <include>$(BOOST_ROOT)
28 ;
29
30 exe fibonacci
31 : fibonacci.cpp
32 : <include>$(BOOST_ROOT)
33 ;
34
35 exe html
36 : html.cpp
37 : <include>$(BOOST_ROOT)
38 ;
39
40 exe key_value
41 : key_value.cpp
42 : <include>$(BOOST_ROOT)
43 ;
44
45 exe perf
46 : perf.cpp
47 : <include>$(BOOST_ROOT)
48 : release
49 ;
50
51 exe serialization
52 : serialization.cpp
53 /boost/serialization//boost_serialization/<link>static
54 : <include>$(BOOST_ROOT)
55 ;