From a475d97e89fca58dbfb2f63cc2714d6613c8b85e Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 4 Feb 2024 09:47:19 -0600 Subject: [PATCH 1/6] Add modular library level build file. --- build.jam | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 build.jam diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..de80034 --- /dev/null +++ b/build.jam @@ -0,0 +1,19 @@ +# 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/preprocessor + : common-requirements + include + ; + +explicit + [ alias boost_preprocessor ] + [ alias all : boost_preprocessor test ] + ; + +call-if : boost-library preprocessor + ; From 4cef4160fa84ec266da9bba155b79c081b3fd61b Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 5 May 2024 09:00:01 -0500 Subject: [PATCH 2/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 de80034..352b7e4 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/preprocessor From d5e87381fed2a1af38ce38d7f17a320eb6fc1830 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 14 Jun 2024 11:33:56 -0500 Subject: [PATCH 3/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 352b7e4..d47654a 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/preprocessor : common-requirements From c62822b6b5ee6f35587616fb7c33f41c10d0d739 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sat, 20 Jul 2024 22:52:03 -0500 Subject: [PATCH 4/6] Update copyright dates. --- build.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.jam b/build.jam index d47654a..b0d65ce 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 0d2a85b3de590ee83d296f5a897cdc657a23627a Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 23 Jul 2024 22:34:22 -0500 Subject: [PATCH 5/6] 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 b0d65ce..4947705 100644 --- a/build.jam +++ b/build.jam @@ -11,9 +11,10 @@ project /boost/preprocessor ; explicit - [ alias boost_preprocessor ] + [ alias boost_preprocessor : : : : $(boost_dependencies) ] [ alias all : boost_preprocessor test ] ; call-if : boost-library preprocessor ; + From cd44c911d7d166fce673562a525d824c5c645ad0 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 7 Apr 2025 20:56:59 -0500 Subject: [PATCH 6/6] Move project global include to target local include. --- build.jam | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build.jam b/build.jam index 4947705..03d97ff 100644 --- a/build.jam +++ b/build.jam @@ -6,15 +6,13 @@ require-b2 5.2 ; project /boost/preprocessor - : common-requirements - include ; explicit - [ alias boost_preprocessor : : : : $(boost_dependencies) ] + [ alias boost_preprocessor : : : + : include $(boost_dependencies) ] [ alias all : boost_preprocessor test ] ; call-if : boost-library preprocessor ; -