From d8a75accfff31e984b261ebdbe953ceba7a3e5c2 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 10 Sep 2024 22:03:05 +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 1cdd034c..895a496b 100644 --- a/build.jam +++ b/build.jam @@ -1,7 +1,7 @@ -# Copyright René Ferdinand Rivera Morell 2023-2024 +# Copyright 2023-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 ; @@ -12,18 +12,15 @@ constant boost_dependencies : /boost/core//boost_core /boost/mp11//boost_mp11 /boost/predef//boost_predef - /boost/throw_exception//boost_throw_exception ; - -project /boost/unordered - : common-requirements - include + /boost/throw_exception//boost_throw_exception ; +project /boost/unordered ; + explicit - [ alias boost_unordered : : : : $(boost_dependencies) ] + [ alias boost_unordered : : : : include $(boost_dependencies) ] [ alias all : boost_unordered test ] ; call-if : boost-library unordered ; -