Squashed 'third_party/boostorg/container/' content from commit 1ad6431
Change-Id: I7d095db3455264c03446268e5675b926bebedb0a
git-subtree-dir: third_party/boostorg/container
git-subtree-split: 1ad64316a432a7f021b4956acf88abc6aaa8a77e
diff --git a/build/Jamfile.v2 b/build/Jamfile.v2
new file mode 100644
index 0000000..3adb451
--- /dev/null
+++ b/build/Jamfile.v2
@@ -0,0 +1,22 @@
+# (C) Copyright Vladimir Prus, David Abrahams, Michael Stevens, Hartmut Kaiser,
+# Ion Gaztanaga 2007-2008
+# Use, modification and distribution are subject to 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)
+
+import sequence ;
+
+project boost/container
+ : source-location ../src
+ : usage-requirements # pass these requirement to dependents (i.e. users)
+ <link>shared:<define>BOOST_CONTAINER_DYN_LINK=1
+ <link>static:<define>BOOST_CONTAINER_STATIC_LINK=1
+ ;
+
+lib boost_container
+ : alloc_lib.c [ sequence.insertion-sort [ glob *.cpp ] ]
+ : <link>shared:<define>BOOST_CONTAINER_DYN_LINK=1
+ <link>static:<define>BOOST_CONTAINER_STATIC_LINK=1
+ ;
+
+boost-install boost_container ;
\ No newline at end of file