From ca3c3c9021e5b1941a18dbbfacc24fa212f95e20 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 11 Mar 2024 08:27:02 -0500 Subject: [PATCH] Make the library modular usable. --- build.jam | 20 ++++++++++++++++++++ test/Jamfile.v2 | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 build.jam diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..58655ad --- /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/assert + : common-requirements + /boost/config//boost_config + include + ; + +explicit + [ alias boost_assert ] + [ alias all : boost_assert test ] + ; + +call-if : boost-library assert + ; diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index ffe840e..d7a7472 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -9,6 +9,8 @@ import testing ; project : requirements + /boost/core//boost_core + extra msvc:on clang:on