diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..b927d26 --- /dev/null +++ b/build.jam @@ -0,0 +1,27 @@ +# Copyright René Ferdinand Rivera Morell 2023-2024 +# 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) + +require-b2 5.2 ; + +constant boost_dependencies : + /boost/assert//boost_assert + /boost/config//boost_config + /boost/core//boost_core + /boost/static_assert//boost_static_assert + /boost/throw_exception//boost_throw_exception ; + +project /boost/array + : common-requirements + include + ; + +explicit + [ alias boost_array : : : : $(boost_dependencies) ] + [ alias all : boost_array test ] + ; + +call-if : boost-library array + ; + diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index eaef21d..845875b 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -41,6 +41,8 @@ project # +project : requirements /boost/array//boost_array ; + run array0.cpp ; run array1.cpp ; run array2.cpp ; @@ -58,7 +60,7 @@ compile-fail array_getfail2.cpp : off ; run array_hash.cpp - : : : [ requires cxx11_noexcept ] ; + : : : /boost/container_hash//boost_container_hash [ requires cxx11_noexcept ] ; #