blob: a4dc9c31868043b574ef56443458f9e1fffe5774 [file] [log] [blame]
Brian Silverman3cbbaca2018-08-04 23:38:07 -07001# Boost.MultiIndex examples Jamfile
2#
3# Copyright 2003-2007 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/multi_index for library home page.
9
10exe basic
11 : basic.cpp
12 : <include>$(BOOST_ROOT)
13 ;
14
15exe bimap
16 : bimap.cpp
17 : <include>$(BOOST_ROOT)
18 ;
19
20exe complex_structs
21 : complex_structs.cpp
22 : <include>$(BOOST_ROOT)
23 ;
24
25exe composite_keys
26 : composite_keys.cpp
27 : <include>$(BOOST_ROOT)
28 ;
29
30exe fun_key
31 : fun_key.cpp
32 : <include>$(BOOST_ROOT)
33 ;
34
35exe hashed
36 : hashed.cpp
37 : <include>$(BOOST_ROOT)
38 ;
39
40exe ip_allocator
41 : ip_allocator.cpp
42 : <include>$(BOOST_ROOT) <threading>multi
43 ;
44
45exe non_default_ctor
46 : non_default_ctor.cpp
47 : <include>$(BOOST_ROOT)
48 ;
49
50exe random_access
51 : random_access.cpp
52 : <include>$(BOOST_ROOT)
53 ;
54
55exe rearrange
56 : rearrange.cpp
57 : <include>$(BOOST_ROOT)
58 ;
59
60exe sequenced
61 : sequenced.cpp
62 : <include>$(BOOST_ROOT)
63 ;
64
65exe serialization
66 : serialization.cpp
67 /boost/serialization//boost_serialization
68 : <include>$(BOOST_ROOT)
69 ;