From bec4e193267cead2d1cb22883bb66f8908e376a8 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 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build.jam b/build.jam index eaa05cd..fa421d3 100644 --- a/build.jam +++ b/build.jam @@ -5,16 +5,19 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/config//boost_config ; + project /boost/typeof : common-requirements - /boost/config//boost_config include ; explicit - [ alias boost_typeof ] + [ alias boost_typeof : : : : $(boost_dependencies) ] [ alias all : boost_typeof test ] ; call-if : boost-library typeof ; +