From f177f437b9845d28beb67ec315dd894c24061d16 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 29 Mar 2024 21:16:00 -0500 Subject: [PATCH] Switch to library requirements instead of source. As source puts extra source in install targets. --- build.jam | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/build.jam b/build.jam index 058c6ceb..712d1f6d 100644 --- a/build.jam +++ b/build.jam @@ -7,18 +7,18 @@ import project ; project /boost/unordered : common-requirements - /boost/assert//boost_assert - /boost/config//boost_config - /boost/container_hash//boost_container_hash - /boost/core//boost_core - /boost/move//boost_move - /boost/mp11//boost_mp11 - /boost/predef//boost_predef - /boost/preprocessor//boost_preprocessor - /boost/static_assert//boost_static_assert - /boost/throw_exception//boost_throw_exception - /boost/tuple//boost_tuple - /boost/type_traits//boost_type_traits + /boost/assert//boost_assert + /boost/config//boost_config + /boost/container_hash//boost_container_hash + /boost/core//boost_core + /boost/move//boost_move + /boost/mp11//boost_mp11 + /boost/predef//boost_predef + /boost/preprocessor//boost_preprocessor + /boost/static_assert//boost_static_assert + /boost/throw_exception//boost_throw_exception + /boost/tuple//boost_tuple + /boost/type_traits//boost_type_traits include ;