diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..e72750e --- /dev/null +++ b/build.jam @@ -0,0 +1,20 @@ +# 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 ; + +project /boost/qvm + : common-requirements + include + ; + +explicit + [ alias boost_qvm : : : : $(boost_dependencies) ] + [ alias all : boost_qvm test ] + ; + +call-if : boost-library qvm + ; + diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index e043da0..f3b0e67 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -5,7 +5,9 @@ project : requirements - ../include + /boost/core//boost_core + /boost/exception//boost_exception + /boost/test//included ; variant debug_qvm_hpp : debug : BOOST_QVM_TEST_SINGLE_HEADER="\\\"qvm.hpp\\\"" ;