diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..538918c --- /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/lambda2 + : common-requirements + include + ; + +explicit + [ alias boost_lambda2 : : : : $(boost_dependencies) ] + [ alias all : boost_lambda2 test ] + ; + +call-if : boost-library lambda2 + ; + diff --git a/test/Jamfile b/test/Jamfile index a21728b..217a195 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -2,10 +2,14 @@ # Distributed under the Boost Software License, Version 1.0. # https://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 extra @@ -13,7 +17,8 @@ project : requirements msvc:on clang:on - gcc:on ; + gcc:on + ; run quick.cpp ; run lambda2_test.cpp ;