From eb079473e23446d7b2324bb0b7745037e9487f4f Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 7 Apr 2025 17:37:01 -0500 Subject: [PATCH] Move project global include to target local include. --- build.jam | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build.jam b/build.jam index 57bf984..5910345 100644 --- a/build.jam +++ b/build.jam @@ -18,15 +18,13 @@ constant boost_dependencies : /boost/utility//boost_utility ; project /boost/lambda - : common-requirements - include ; explicit - [ alias boost_lambda : : : : $(boost_dependencies) ] + [ alias boost_lambda : : : + : include $(boost_dependencies) ] [ alias all : boost_lambda test ] ; call-if : boost-library lambda ; -