From a377e87bfcb1a57dc96ce9d82ac82a235bf93593 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 7 Apr 2025 21:24:57 -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 13efa2f..97d068e 100644 --- a/build.jam +++ b/build.jam @@ -25,15 +25,13 @@ constant boost_dependencies : /boost/utility//boost_utility ; project /boost/range - : common-requirements - include ; explicit - [ alias boost_range : : : : $(boost_dependencies) ] + [ alias boost_range : : : + : include $(boost_dependencies) ] [ alias all : boost_range test ] ; call-if : boost-library range ; -