From 1ecfef441414b2676d6eaee656481b3f4eb50a31 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 | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/build.jam b/build.jam index 6ec90530..77017c9f 100644 --- a/build.jam +++ b/build.jam @@ -5,19 +5,22 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/config//boost_config + /boost/preprocessor//boost_preprocessor + /boost/static_assert//boost_static_assert + /boost/type_traits//boost_type_traits ; + project /boost/concept_check : common-requirements - /boost/config//boost_config - /boost/preprocessor//boost_preprocessor - /boost/static_assert//boost_static_assert - /boost/type_traits//boost_type_traits include ; explicit - [ alias boost_concept_check ] + [ alias boost_concept_check : : : : $(boost_dependencies) ] [ alias all : boost_concept_check test ] ; call-if : boost-library concept_check ; +