From c23c56d7eaf9c24ba34b359cf81cf6303e688aca 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 659eb41..ab2116d 100644 --- a/build.jam +++ b/build.jam @@ -5,18 +5,21 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/assert//boost_assert + /boost/config//boost_config + /boost/type_traits//boost_type_traits ; + project /boost/stl_interfaces : common-requirements - /boost/assert//boost_assert - /boost/config//boost_config - /boost/type_traits//boost_type_traits include ; explicit - [ alias boost_stl_interfaces ] + [ alias boost_stl_interfaces : : : : $(boost_dependencies) ] [ alias all : boost_stl_interfaces test ] ; call-if : boost-library stl_interfaces ; +