diff --git a/Jamfile b/Jamfile deleted file mode 100644 index 6d861a9..0000000 --- a/Jamfile +++ /dev/null @@ -1,11 +0,0 @@ -# Boost.Move Library Jamfile -# -# Copyright (c) 2018 James E. King III -# -# 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..f785704 --- /dev/null +++ b/build.jam @@ -0,0 +1,23 @@ +# 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/config//boost_config ; + +project /boost/move + : common-requirements + include + ; + +explicit + [ alias boost_move : : : : $(boost_dependencies) ] + [ alias all : boost_move example test ] + ; + +call-if : boost-library move + ; + diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index ba1d013..90df048 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -1,6 +1,6 @@ # Boost.Move library documentation Jamfile # -# Copyright Ion Gaztanaga 2009. +# Copyright Ion Gaztanaga 2009. # 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) @@ -13,8 +13,8 @@ import quickbook ; doxygen autodoc : - [ glob ../../../boost/move/*.hpp ] - [ glob ../../../boost/move/algo/*.hpp ] + [ glob ../include/boost/move/*.hpp ] + [ glob ../include/boost/move/algo/*.hpp ] : HIDE_UNDOC_MEMBERS=YES HIDE_UNDOC_MEMBERS=YES diff --git a/example/Jamfile.v2 b/example/Jamfile.v2 index bc354e0..f2e7fd5 100644 --- a/example/Jamfile.v2 +++ b/example/Jamfile.v2 @@ -9,6 +9,11 @@ # import testing ; +project : requirements + /boost/container//boost_container + /boost/type_traits//boost_type_traits + ; + rule test_all { local all_rules = ; @@ -25,7 +30,7 @@ rule test_all return $(all_rules) ; } -test-suite move_example : [ test_all r ] +test-suite move_example : [ test_all r ] : static ; - + diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 2ce67bb..bc043f6 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -9,6 +9,11 @@ import testing ; +project : requirements + /boost/core//boost_core + /boost/container//boost_container + ; + rule test_all { local all_rules = ; @@ -26,4 +31,4 @@ rule test_all } test-suite move_test : [ test_all r ] ; - +