From 3fb266bf5796743155db9009610b09d1c68d2311 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 27 Aug 2024 13:59:28 +0300 Subject: [PATCH] Update build.jam, test/Jamfile --- build.jam | 14 +++++--------- test/Jamfile | 3 ++- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/build.jam b/build.jam index 538918c..5dfb72e 100644 --- a/build.jam +++ b/build.jam @@ -1,20 +1,16 @@ -# Copyright René Ferdinand Rivera Morell 2023-2024 +# Copyright 2023-2024 René Ferdinand Rivera Morell +# Copyright 2024 Peter Dimov # 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) +# https://www.boost.org/LICENSE_1_0.txt require-b2 5.2 ; -project /boost/lambda2 - : common-requirements - include - ; +project /boost/lambda2 ; explicit - [ alias boost_lambda2 : : : : $(boost_dependencies) ] + [ alias boost_lambda2 : : : : include $(boost_dependencies) ] [ alias all : boost_lambda2 test ] ; call-if : boost-library lambda2 ; - diff --git a/test/Jamfile b/test/Jamfile index 217a195..52b4804 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -8,6 +8,7 @@ import testing ; import config : requires ; project : requirements + /boost/lambda2//boost_lambda2 /boost/config//boost_config /boost/core//boost_core @@ -18,7 +19,7 @@ project : requirements msvc:on clang:on gcc:on - ; +; run quick.cpp ; run lambda2_test.cpp ;