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