diff --git a/Jamfile b/Jamfile deleted file mode 100644 index e43cebe..0000000 --- a/Jamfile +++ /dev/null @@ -1,11 +0,0 @@ -# Boost.Intrusive Library Jamfile -# -# Copyright (c) 2018 Ion Gaztanaga -# -# Use, modification, and distribution are subject to 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) - -# please order by name to ease maintenance -build-project example ; -build-project test ; diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..89d99e1 --- /dev/null +++ b/build.jam @@ -0,0 +1,25 @@ +# 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) + +require-b2 5.2 ; + +constant boost_dependencies : + /boost/assert//boost_assert + /boost/config//boost_config + /boost/move//boost_move ; + +project /boost/intrusive + : common-requirements + include + ; + +explicit + [ alias boost_intrusive : : : : $(boost_dependencies) ] + [ alias all : boost_intrusive example test ] + ; + +call-if : boost-library intrusive + ; + diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 386013c..0ab81d9 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -18,7 +18,7 @@ path-constant here : . ; doxygen autodoc : - [ glob ../../../boost/intrusive/*.hpp ] + [ glob ../include/boost/intrusive/*.hpp ] : EXTRACT_ALL=NO HIDE_UNDOC_MEMBERS=YES diff --git a/example/Jamfile.v2 b/example/Jamfile.v2 index 4e8f44e..6f349b7 100644 --- a/example/Jamfile.v2 +++ b/example/Jamfile.v2 @@ -11,6 +11,8 @@ # 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 testing ; + # this rule enumerates through all the sources and invokes # the run rule for each source, the result is a list of all # the run rules, which we can pass on to the test_suite rule: @@ -30,6 +32,7 @@ rule test_all gcc,windows:"-lole32 -loleaut32" hpux,gcc:"-Wl,+as,mpas" windows,clang:"-lole32 -loleaut32 -lpsapi -ladvapi32" + /boost/interprocess//boost_interprocess ] ; } diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 8193d27..a83c23a 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -25,6 +25,10 @@ rule test_all : # test-files : # requirements windows,clang:"-lole32 -loleaut32 -lpsapi -ladvapi32" + /boost/core//boost_core + /boost/container//boost_container + /boost/container_hash//boost_container_hash + /boost/type_traits//boost_type_traits ] ; }