diff --git a/build.jam b/build.jam new file mode 100644 index 00000000..6f4de529 --- /dev/null +++ b/build.jam @@ -0,0 +1,20 @@ +# 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 ; + +project /boost/hof + : common-requirements + include + ; + +explicit + [ alias boost_hof : : : : $(boost_dependencies) ] + [ alias all : boost_hof test ] + ; + +call-if : boost-library hof + ; + diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 198de5bd..33207f46 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -4,12 +4,14 @@ # 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-search /boost/config/checks ; + import testing ; -import ../../config/checks/config : requires ; +import config : requires ; project hof : requirements [ requires cxx11_variadic_templates cxx11_constexpr ] - ../include/ ; rule test_all