From 36c5a8185baaa1c7c635dba39ebe442d69782aea Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 23 Jul 2024 22:34:23 -0500 Subject: [PATCH] Move inter-lib dependencies to a project variable and into the build targets. --- build.jam | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build.jam b/build.jam index ccd5c96..f785704 100644 --- a/build.jam +++ b/build.jam @@ -5,16 +5,19 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/config//boost_config ; + project /boost/move : common-requirements - /boost/config//boost_config include ; explicit - [ alias boost_move ] + [ alias boost_move : : : : $(boost_dependencies) ] [ alias all : boost_move example test ] ; call-if : boost-library move ; +