diff --git a/build.jam b/build.jam new file mode 100644 index 00000000..59103457 --- /dev/null +++ b/build.jam @@ -0,0 +1,30 @@ +# 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 ; + +constant boost_dependencies : + /boost/bind//boost_bind + /boost/config//boost_config + /boost/core//boost_core + /boost/detail//boost_detail + /boost/iterator//boost_iterator + /boost/mpl//boost_mpl + /boost/preprocessor//boost_preprocessor + /boost/tuple//boost_tuple + /boost/type_traits//boost_type_traits + /boost/utility//boost_utility ; + +project /boost/lambda + ; + +explicit + [ alias boost_lambda : : : + : include $(boost_dependencies) ] + [ alias all : boost_lambda test ] + ; + +call-if : boost-library lambda + ; diff --git a/test/Jamfile b/test/Jamfile index 316223b6..368a92f8 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -1,17 +1,19 @@ # Lambda library -# Copyright (C) 2001-2003 Jaakko Järvi +# Copyright (C) 2001-2003 Jaakko J�rvi -# Use, modification and distribution is subject to 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) +# Use, modification and distribution is subject to 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) # For more information, see http://www.boost.org/ import testing ; +project : requirements /boost/lambda//boost_lambda ; + run algorithm_test.cpp ; -run bind_tests_advanced.cpp ; +run bind_tests_advanced.cpp : : : /boost/any//boost_any ; run bind_tests_simple.cpp ; run bind_tests_simple_f_refs.cpp ; run bll_and_function.cpp ;