From aa4e60bd88368f1794c0de276da3d0a24ffd222f 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 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build.jam b/build.jam index e769cad..8379680 100644 --- a/build.jam +++ b/build.jam @@ -5,16 +5,19 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/config//boost_config ; + project /boost/static_assert : common-requirements - /boost/config//boost_config include ; explicit - [ alias boost_static_assert ] + [ alias boost_static_assert : : : : $(boost_dependencies) ] [ alias all : boost_static_assert example test ] ; call-if : boost-library static_assert ; +