diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..ab2116d --- /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/type_traits//boost_type_traits ; + +project /boost/stl_interfaces + : common-requirements + include + ; + +explicit + [ alias boost_stl_interfaces : : : : $(boost_dependencies) ] + [ alias all : boost_stl_interfaces test ] + ; + +call-if : boost-library stl_interfaces + ; + diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index fbbf437..8a656f7 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -39,7 +39,7 @@ rule run_doxygen ( files * : name : expand ? ) } -run_doxygen [ glob $(here)/../../../boost/stl_interfaces/*.hpp ] : "Headers" ; +run_doxygen [ glob $(here)/../include/boost/stl_interfaces/*.hpp ] : "Headers" ; install images_standalone : [ glob *.png ] : html/stl_interfaces/img ; explicit images_standalone ; diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index d728ec8..dc25d4c 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -7,10 +7,12 @@ # http://www.boost.org/LICENSE_1_0.txt) import testing ; -import ../../config/checks/config : requires ; +import-search /boost/config/checks ; +import config : requires ; project : requirements + /boost/core//boost_core [ requires cxx14_constexpr ] ;