diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..1af4f72 --- /dev/null +++ b/build.jam @@ -0,0 +1,25 @@ +# Copyright René Ferdinand Rivera Morell 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/throw_exception//boost_throw_exception ; + +project /boost/compat + : common-requirements + include + ; + +explicit + [ alias boost_compat : : : : $(boost_dependencies) ] + [ alias all : boost_compat test ] + ; + +call-if : boost-library compat + ; + diff --git a/test/Jamfile b/test/Jamfile index 8751f89..33c1a69 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -4,7 +4,8 @@ # https://www.boost.org/LICENSE_1_0.txt import testing ; -import ../../config/checks/config : requires ; +import-search /boost/config/checks ; +import config : requires ; project : default-build @@ -21,6 +22,9 @@ project gcc:on clang:on + /boost/core//boost_core + /boost/mp11//boost_mp11 + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81601 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91146 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92397