From c6cceb75117d4c3f971ee605759a778282ce0ec0 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 23 Jul 2024 22:34:22 -0500 Subject: [PATCH] Move inter-lib dependencies to a project variable and into the build targets. --- build.jam | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build.jam b/build.jam index 124c838..b64fe39 100644 --- a/build.jam +++ b/build.jam @@ -5,17 +5,20 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/config//boost_config + /boost/core//boost_core ; + project /boost/logic : common-requirements include - /boost/config//boost_config - /boost/core//boost_core ; explicit - [ alias boost_logic ] + [ alias boost_logic : : : : $(boost_dependencies) ] [ alias all : boost_logic test ] ; call-if : boost-library logic ; +