]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/container/build/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / container / build / Jamfile.v2
CommitLineData
7c673cae
FG
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
b32b8144
FG
7import sequence ;
8
7c673cae
FG
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
b32b8144 17 : alloc_lib.c [ sequence.insertion-sort [ glob *.cpp ] ]
7c673cae
FG
18 : <link>shared:<define>BOOST_CONTAINER_DYN_LINK=1
19 <link>static:<define>BOOST_CONTAINER_STATIC_LINK=1
20 ;
21
22boost-install boost_container ;