Jamfile.v2 786 B

12345678910111213141516171819202122
  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. import sequence ;
  7. project boost/container
  8. : source-location ../src
  9. : usage-requirements # pass these requirement to dependents (i.e. users)
  10. <link>shared:<define>BOOST_CONTAINER_DYN_LINK=1
  11. <link>static:<define>BOOST_CONTAINER_STATIC_LINK=1
  12. ;
  13. lib boost_container
  14. : alloc_lib.c [ sequence.insertion-sort [ glob *.cpp ] ]
  15. : <link>shared:<define>BOOST_CONTAINER_DYN_LINK=1
  16. <link>static:<define>BOOST_CONTAINER_STATIC_LINK=1
  17. ;
  18. boost-install boost_container ;