1# (C) Copyright Vladimir Prus, David Abrahams, Michael Stevens, Hartmut Kaiser,
2# Ion Gaztanaga 2007-2008
3# Use, modification and distribution are subject to the
4# Boost Software License, Version 1.0. (See accompanying file
5# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7import sequence ;
8
9project boost/container
10    : source-location ../src
11    : usage-requirements  # pass these requirement to dependents (i.e. users)
12      <link>shared:<define>BOOST_CONTAINER_DYN_LINK=1
13      <link>static:<define>BOOST_CONTAINER_STATIC_LINK=1
14    ;
15
16lib boost_container
17   : alloc_lib.c [ sequence.insertion-sort [ glob *.cpp ] ]
18   : <link>shared:<define>BOOST_CONTAINER_DYN_LINK=1
19     <link>static:<define>BOOST_CONTAINER_STATIC_LINK=1
20   ;
21
22boost-install boost_container ;