This commit was manufactured by cvs2svn to create branch 'RC_1_34_0'.

[SVN r35900]
This commit is contained in:
nobody 2006-11-07 14:41:23 +00:00
parent 28930f64c0
commit 93d21ea64c
2 changed files with 78 additions and 0 deletions

64
example/Jamfile.v2 Normal file
View File

@ -0,0 +1,64 @@
# Boost.MultiIndex examples Jamfile
#
# Copyright 2003-2006 Joaquín M López Muñoz.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
# See http://www.boost.org/libs/multi_index for library home page.
exe basic
: basic.cpp
: <include>$(BOOST_ROOT)
;
exe bimap
: bimap.cpp
: <include>$(BOOST_ROOT)
;
exe complex_structs
: complex_structs.cpp
: <include>$(BOOST_ROOT)
;
exe composite_keys
: composite_keys.cpp
: <include>$(BOOST_ROOT)
;
exe hashed
: hashed.cpp
: <include>$(BOOST_ROOT)
;
exe memfun_key
: memfun_key.cpp
: <include>$(BOOST_ROOT)
;
exe non_default_ctor
: non_default_ctor.cpp
: <include>$(BOOST_ROOT)
;
exe random_access
: random_access.cpp
: <include>$(BOOST_ROOT)
;
exe rearrange
: rearrange.cpp
: <include>$(BOOST_ROOT)
;
exe sequenced
: sequenced.cpp
: <include>$(BOOST_ROOT)
;
exe serialization
: serialization.cpp
/boost/serialization//boost_serialization
: <include>$(BOOST_ROOT)
;

14
perf/Jamfile.v2 Normal file
View File

@ -0,0 +1,14 @@
# Boost.MultiIndex performance tests Jamfile
#
# Copyright 2003-2006 Joaquín M López Muñoz.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
# See http://www.boost.org/libs/multi_index for library home page.
exe test_perf
: test_perf.cpp
: <include>$(BOOST_ROOT)
: release
;