diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..38f04bf --- /dev/null +++ b/build.jam @@ -0,0 +1,26 @@ +# 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/config//boost_config + /boost/core//boost_core + /boost/static_assert//boost_static_assert + /boost/type_traits//boost_type_traits ; + +project /boost/tuple + : common-requirements + include + ; + +explicit + [ alias boost_tuple : : : : $(boost_dependencies) ] + [ alias all : boost_tuple test ] + ; + +call-if : boost-library tuple + ; + diff --git a/test/Jamfile b/test/Jamfile index fe90abc..df8b5c5 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -3,6 +3,8 @@ import testing ; +project : requirements /boost/tuple//boost_tuple ; + run tuple_test_bench.cpp ; run io_test.cpp ; run another_tuple_test_bench.cpp ;