From 3188b43460e8139c67d3b4c0d713aa7b156abbd0 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 11 Mar 2024 08:38:17 -0500 Subject: [PATCH 1/6] Make the library modular usable. --- build.jam | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 build.jam diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..6214034 --- /dev/null +++ b/build.jam @@ -0,0 +1,32 @@ +# Copyright René Ferdinand Rivera Morell 2024 +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +import project ; + +project /boost/property_map_parallel + : common-requirements + /boost/assert//boost_assert + /boost/concept_check//boost_concept_check + /boost/config//boost_config + /boost/function//boost_function + /boost/mpi//boost_mpi + /boost/mpl//boost_mpl + /boost/multi_index//boost_multi_index + /boost/optional//boost_optional + /boost/property_map//boost_property_map + /boost/serialization//boost_serialization + /boost/smart_ptr//boost_smart_ptr + /boost/static_assert//boost_static_assert + /boost/type_traits//boost_type_traits + include + ; + +explicit + [ alias boost_property_map_parallel ] + [ alias all : boost_property_map_parallel ] + ; + +call-if : boost-library property_map_parallel + ; From 7840edd9bc9cfc0318cbe7d766053bb96c057749 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 29 Mar 2024 21:15:59 -0500 Subject: [PATCH 2/6] Switch to library requirements instead of source. As source puts extra source in install targets. --- build.jam | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/build.jam b/build.jam index 6214034..30ea043 100644 --- a/build.jam +++ b/build.jam @@ -7,19 +7,19 @@ import project ; project /boost/property_map_parallel : common-requirements - /boost/assert//boost_assert - /boost/concept_check//boost_concept_check - /boost/config//boost_config - /boost/function//boost_function - /boost/mpi//boost_mpi - /boost/mpl//boost_mpl - /boost/multi_index//boost_multi_index - /boost/optional//boost_optional - /boost/property_map//boost_property_map - /boost/serialization//boost_serialization - /boost/smart_ptr//boost_smart_ptr - /boost/static_assert//boost_static_assert - /boost/type_traits//boost_type_traits + /boost/assert//boost_assert + /boost/concept_check//boost_concept_check + /boost/config//boost_config + /boost/function//boost_function + /boost/mpi//boost_mpi + /boost/mpl//boost_mpl + /boost/multi_index//boost_multi_index + /boost/optional//boost_optional + /boost/property_map//boost_property_map + /boost/serialization//boost_serialization + /boost/smart_ptr//boost_smart_ptr + /boost/static_assert//boost_static_assert + /boost/type_traits//boost_type_traits include ; From 59e2404a19c80c56efb23e561db1bdfd1ef51c1a Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 5 May 2024 09:00:01 -0500 Subject: [PATCH 3/6] Add requires-b2 check to top-level build file. --- build.jam | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.jam b/build.jam index 30ea043..f171485 100644 --- a/build.jam +++ b/build.jam @@ -3,6 +3,8 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) +require-b2 5.1 ; + import project ; project /boost/property_map_parallel From da3f6c3dfcd6fb21b3cdd7023b3489179b4ed4ed Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 14 Jun 2024 11:33:56 -0500 Subject: [PATCH 4/6] Bump B2 require to 5.2 --- build.jam | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.jam b/build.jam index f171485..ac98f42 100644 --- a/build.jam +++ b/build.jam @@ -3,9 +3,7 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) -require-b2 5.1 ; - -import project ; +require-b2 5.2 ; project /boost/property_map_parallel : common-requirements From 1c2522737c33e4b8cbcc1e3f5557d815082689af Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 23 Jul 2024 22:34:24 -0500 Subject: [PATCH 5/6] Move inter-lib dependencies to a project variable and into the build targets. --- build.jam | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/build.jam b/build.jam index ac98f42..ee4a318 100644 --- a/build.jam +++ b/build.jam @@ -5,28 +5,31 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/assert//boost_assert + /boost/concept_check//boost_concept_check + /boost/config//boost_config + /boost/function//boost_function + /boost/mpi//boost_mpi + /boost/mpl//boost_mpl + /boost/multi_index//boost_multi_index + /boost/optional//boost_optional + /boost/property_map//boost_property_map + /boost/serialization//boost_serialization + /boost/smart_ptr//boost_smart_ptr + /boost/static_assert//boost_static_assert + /boost/type_traits//boost_type_traits ; + project /boost/property_map_parallel : common-requirements - /boost/assert//boost_assert - /boost/concept_check//boost_concept_check - /boost/config//boost_config - /boost/function//boost_function - /boost/mpi//boost_mpi - /boost/mpl//boost_mpl - /boost/multi_index//boost_multi_index - /boost/optional//boost_optional - /boost/property_map//boost_property_map - /boost/serialization//boost_serialization - /boost/smart_ptr//boost_smart_ptr - /boost/static_assert//boost_static_assert - /boost/type_traits//boost_type_traits include ; explicit - [ alias boost_property_map_parallel ] + [ alias boost_property_map_parallel : : : : $(boost_dependencies) ] [ alias all : boost_property_map_parallel ] ; call-if : boost-library property_map_parallel ; + From 93857049c8869f0a9f7b424971c9bca24c13ed18 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 7 Apr 2025 20:58:02 -0500 Subject: [PATCH 6/6] Move project global include to target local include. --- build.jam | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.jam b/build.jam index ee4a318..39b4ad4 100644 --- a/build.jam +++ b/build.jam @@ -21,12 +21,11 @@ constant boost_dependencies : /boost/type_traits//boost_type_traits ; project /boost/property_map_parallel - : common-requirements - include ; explicit - [ alias boost_property_map_parallel : : : : $(boost_dependencies) ] + [ alias boost_property_map_parallel : : : + : include $(boost_dependencies) ] [ alias all : boost_property_map_parallel ] ;