diff --git a/build.jam b/build.jam index d552fd4..ab1b8ea 100644 --- a/build.jam +++ b/build.jam @@ -1,25 +1,22 @@ -# 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 ; constant boost_dependencies : /boost/config//boost_config /boost/describe//boost_describe - /boost/mp11//boost_mp11 ; - -project /boost/container_hash - : common-requirements - include + /boost/mp11//boost_mp11 ; +project /boost/container_hash ; + explicit - [ alias boost_container_hash : : : : $(boost_dependencies) ] + [ alias boost_container_hash : : : : include $(boost_dependencies) ] [ alias all : boost_container_hash examples test ] ; call-if : boost-library container_hash ; - diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 54ddbbd..479e288 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -76,7 +76,8 @@ run quick.cpp ; run hash_number_test2.cpp ; run hash_integral_test.cpp ; -run hash_string_test2.cpp /boost/utility//boost_utility ; +run hash_string_test2.cpp + /boost/utility//boost_utility ; # for gcc-4.8 local fs-path-req = "-gcc:-Wshadow" "-gcc:-Wconversion" gcc-4.7:no ; @@ -120,8 +121,10 @@ run is_described_class_test3.cpp run described_class_test.cpp : : : extra ; -run hash_is_avalanching_test.cpp /boost/unordered//boost_unordered ; -run hash_is_avalanching_test2.cpp /boost/unordered//boost_unordered ; +run hash_is_avalanching_test.cpp + /boost/unordered//boost_unordered ; +run hash_is_avalanching_test2.cpp + /boost/unordered//boost_unordered ; run hash_integral_test2.cpp ;