Brian Silverman | 3cbbaca | 2018-08-04 23:38:07 -0700 | [diff] [blame^] | 1 | # 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 | |
| 10 | exe basic |
| 11 | : basic.cpp |
| 12 | : <include>$(BOOST_ROOT) |
| 13 | ; |
| 14 | |
| 15 | exe bimap |
| 16 | : bimap.cpp |
| 17 | : <include>$(BOOST_ROOT) |
| 18 | ; |
| 19 | |
| 20 | exe complex_structs |
| 21 | : complex_structs.cpp |
| 22 | : <include>$(BOOST_ROOT) |
| 23 | ; |
| 24 | |
| 25 | exe composite_keys |
| 26 | : composite_keys.cpp |
| 27 | : <include>$(BOOST_ROOT) |
| 28 | ; |
| 29 | |
| 30 | exe fun_key |
| 31 | : fun_key.cpp |
| 32 | : <include>$(BOOST_ROOT) |
| 33 | ; |
| 34 | |
| 35 | exe hashed |
| 36 | : hashed.cpp |
| 37 | : <include>$(BOOST_ROOT) |
| 38 | ; |
| 39 | |
| 40 | exe ip_allocator |
| 41 | : ip_allocator.cpp |
| 42 | : <include>$(BOOST_ROOT) <threading>multi |
| 43 | ; |
| 44 | |
| 45 | exe non_default_ctor |
| 46 | : non_default_ctor.cpp |
| 47 | : <include>$(BOOST_ROOT) |
| 48 | ; |
| 49 | |
| 50 | exe random_access |
| 51 | : random_access.cpp |
| 52 | : <include>$(BOOST_ROOT) |
| 53 | ; |
| 54 | |
| 55 | exe rearrange |
| 56 | : rearrange.cpp |
| 57 | : <include>$(BOOST_ROOT) |
| 58 | ; |
| 59 | |
| 60 | exe sequenced |
| 61 | : sequenced.cpp |
| 62 | : <include>$(BOOST_ROOT) |
| 63 | ; |
| 64 | |
| 65 | exe serialization |
| 66 | : serialization.cpp |
| 67 | /boost/serialization//boost_serialization |
| 68 | : <include>$(BOOST_ROOT) |
| 69 | ; |