From 58cd5e35b129f3fdf28f0ab02bb298ec86dcc19e Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 23 Jul 2024 22:34:24 -0500 Subject: [PATCH] Move inter-lib dependencies to a project variable and into the build targets. --- build.jam | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.jam b/build.jam index 4ac43da..d552fd4 100644 --- a/build.jam +++ b/build.jam @@ -5,18 +5,21 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/config//boost_config + /boost/describe//boost_describe + /boost/mp11//boost_mp11 ; + project /boost/container_hash : common-requirements - /boost/config//boost_config - /boost/describe//boost_describe - /boost/mp11//boost_mp11 include ; explicit - [ alias boost_container_hash ] + [ alias boost_container_hash : : : : $(boost_dependencies) ] [ alias all : boost_container_hash examples test ] ; call-if : boost-library container_hash ; +