From 2cbf3ad7d8127771c0fa6cdc812638725b348de5 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 | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/build.jam b/build.jam index a0a0aa9..6e5741b 100644 --- a/build.jam +++ b/build.jam @@ -5,23 +5,26 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/assert//boost_assert + /boost/config//boost_config + /boost/container_hash//boost_container_hash + /boost/core//boost_core + /boost/integer//boost_integer + /boost/move//boost_move + /boost/static_assert//boost_static_assert + /boost/throw_exception//boost_throw_exception ; + project /boost/dynamic_bitset : common-requirements - /boost/assert//boost_assert - /boost/config//boost_config - /boost/container_hash//boost_container_hash - /boost/core//boost_core - /boost/integer//boost_integer - /boost/move//boost_move - /boost/static_assert//boost_static_assert - /boost/throw_exception//boost_throw_exception include ; explicit - [ alias boost_dynamic_bitset ] + [ alias boost_dynamic_bitset : : : : $(boost_dependencies) ] [ alias all : boost_dynamic_bitset example test ] ; call-if : boost-library dynamic_bitset ; +