From b84db5a49d2cf468ebd3726e1248a7cc172e7f02 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 | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/build.jam b/build.jam index 21e16eb..27dc618 100644 --- a/build.jam +++ b/build.jam @@ -5,19 +5,22 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/assert//boost_assert + /boost/config//boost_config + /boost/throw_exception//boost_throw_exception + /boost/type_traits//boost_type_traits ; + project /boost/uuid : common-requirements - /boost/assert//boost_assert - /boost/config//boost_config - /boost/throw_exception//boost_throw_exception - /boost/type_traits//boost_type_traits include ; explicit - [ alias boost_uuid ] + [ alias boost_uuid : : : : $(boost_dependencies) ] [ alias all : boost_uuid test ] ; call-if : boost-library uuid ; +