From 787a5dd4d19d5b8418840791ed01c44bc4103e5b Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 20 Aug 2024 20:56:20 +0300 Subject: [PATCH] Update build.jam --- build.jam | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/build.jam b/build.jam index 1af4f72..5bda36d 100644 --- a/build.jam +++ b/build.jam @@ -1,25 +1,22 @@ -# Copyright René Ferdinand Rivera Morell 2024 +# Copyright 2024 René Ferdinand Rivera Morell +# Copyright 2024 Peter Dimov # 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) +# https://www.boost.org/LICENSE_1_0.txt require-b2 5.2 ; constant boost_dependencies : /boost/assert//boost_assert /boost/config//boost_config - /boost/throw_exception//boost_throw_exception ; - -project /boost/compat - : common-requirements - include + /boost/throw_exception//boost_throw_exception ; +project /boost/compat ; + explicit - [ alias boost_compat : : : : $(boost_dependencies) ] + [ alias boost_compat : : : : include $(boost_dependencies) ] [ alias all : boost_compat test ] ; call-if : boost-library compat ; -