From fbdf4f129dae6dee8f1d5f8a176802108cecc040 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 | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.jam b/build.jam index 4d2a410..89d99e1 100644 --- a/build.jam +++ b/build.jam @@ -5,18 +5,21 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/assert//boost_assert + /boost/config//boost_config + /boost/move//boost_move ; + project /boost/intrusive : common-requirements - /boost/assert//boost_assert - /boost/config//boost_config - /boost/move//boost_move include ; explicit - [ alias boost_intrusive ] + [ alias boost_intrusive : : : : $(boost_dependencies) ] [ alias all : boost_intrusive example test ] ; call-if : boost-library intrusive ; +