diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..be164da --- /dev/null +++ b/build.jam @@ -0,0 +1,19 @@ +# Copyright René Ferdinand Rivera Morell 2023 +# 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) + +import project ; + +project /boost/mp11 + : common-requirements + include + ; + +explicit + [ alias boost_mp11 ] + [ alias all : boost_mp11 test ] + ; + +call-if : boost-library mp11 + ; diff --git a/test/Jamfile b/test/Jamfile index 8fc035c..5a373fa 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -6,11 +6,16 @@ # See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt +import-search /boost/config/checks ; + import testing ; -import ../../config/checks/config : requires ; +import config : requires ; project : requirements + /boost/config//boost_config + /boost/core//boost_core + /boost/mpl//boost_mpl [ requires cxx11_variadic_templates cxx11_template_aliases cxx11_decltype cxx11_hdr_tuple ]