From f5fce8a1249fa1ff534d3d958bbdcd3ecf4be2fe Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 26 Jul 2024 17:32:48 -0500 Subject: [PATCH] Split b2 dependencies into public and private. --- build.jam | 2 -- build/Jamfile.v2 | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/build.jam b/build.jam index f905e6a..ab577bc 100644 --- a/build.jam +++ b/build.jam @@ -7,7 +7,6 @@ require-b2 5.2 ; constant boost_dependencies : /boost/any//boost_any - /boost/bind//boost_bind /boost/config//boost_config /boost/core//boost_core /boost/detail//boost_detail @@ -17,7 +16,6 @@ constant boost_dependencies : /boost/smart_ptr//boost_smart_ptr /boost/static_assert//boost_static_assert /boost/throw_exception//boost_throw_exception - /boost/tokenizer//boost_tokenizer /boost/type_traits//boost_type_traits ; project /boost/program_options diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index d293a53..2d00cdb 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -1,4 +1,9 @@ +constant boost_dependencies_private : + /boost/bind//boost_bind + /boost/tokenizer//boost_tokenizer + ; + project : source-location ../src : common-requirements $(boost_dependencies)