diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..76439ae --- /dev/null +++ b/build.jam @@ -0,0 +1,22 @@ +# 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/typeof + : common-requirements + /boost/config//boost_config + /boost/preprocessor//boost_preprocessor + /boost/type_traits//boost_type_traits + include + ; + +explicit + [ alias boost_typeof ] + [ alias all : boost_typeof test ] + ; + +call-if : boost-library typeof + ; diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index d0fc589..3b326fb 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -8,6 +8,11 @@ import testing ; import set ; +project : requirements + /boost/core//boost_core + /boost/lexical_cast//boost_lexical_cast + ; + # The special requirement is not ported yet. # #local rule special-requirements ( toolset variant : properties * )