From 5af56ff9f86b138b2f80eadcef08b7540c2903e6 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 | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build.jam b/build.jam index e432ba7..62d780a 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/bind : common-requirements - /boost/config//boost_config - /boost/core//boost_core include ; explicit - [ alias boost_bind ] + [ alias boost_bind : : : : $(boost_dependencies) ] [ alias all : boost_bind test ] ; call-if : boost-library bind ; +