From 99f3c72c9a4eeb98dbde958b2cca84d63723e329 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sat, 3 Feb 2024 23:16:51 -0600 Subject: [PATCH 1/5] Add modular library level build file. --- build.jam | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 build.jam diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..1c64ab8 --- /dev/null +++ b/build.jam @@ -0,0 +1,20 @@ +# Copyright René Ferdinand Rivera Morell 2023 +# 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/compatibility + : common-requirements + include + ; + +explicit + [ alias boost_compatibility ] + [ alias all : boost_compatibility ] + ; + +call-if + : boost-library compatibility + ; From 49e13196a0565fb77f78a540d62e14b17e384a90 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 5 May 2024 09:00:00 -0500 Subject: [PATCH 2/5] 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 1c64ab8..c0a8d79 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/compatibility From 4a386aba9ac8e52d9708bff71f8a8b77e4e81544 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 14 Jun 2024 11:33:55 -0500 Subject: [PATCH 3/5] 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 c0a8d79..a8ff2c9 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/compatibility : common-requirements From 84d2a066b3ba9fa39cb6f6837d00e4d6f0c98eda Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sat, 20 Jul 2024 22:52:04 -0500 Subject: [PATCH 4/5] Update copyright dates. --- build.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.jam b/build.jam index a8ff2c9..489ca84 100644 --- a/build.jam +++ b/build.jam @@ -1,4 +1,4 @@ -# Copyright René Ferdinand Rivera Morell 2023 +# Copyright René Ferdinand Rivera Morell 2023-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) From 6349508139c65a50961f57e763b3d0513f11e7a7 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 23 Jul 2024 22:34:23 -0500 Subject: [PATCH 5/5] Move inter-lib dependencies to a project variable and into the build targets. --- build.jam | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.jam b/build.jam index 489ca84..0b5ff19 100644 --- a/build.jam +++ b/build.jam @@ -11,10 +11,11 @@ project /boost/compatibility ; explicit - [ alias boost_compatibility ] + [ alias boost_compatibility : : : : $(boost_dependencies) ] [ alias all : boost_compatibility ] ; call-if : boost-library compatibility ; +