Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for modular build structure. #52

Open
wants to merge 11 commits into
base: develop
Choose a base branch
from
20 changes: 20 additions & 0 deletions build.jam
Original file line number Diff line number Diff line change
@@ -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>include
;

explicit
[ alias boost_qvm : : : : <library>$(boost_dependencies) ]
[ alias all : boost_qvm test ]
;

call-if : boost-library qvm
;

4 changes: 3 additions & 1 deletion test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

project
: requirements
<include>../include
<library>/boost/core//boost_core
<library>/boost/exception//boost_exception
<library>/boost/test//included
;

variant debug_qvm_hpp : debug : <define>BOOST_QVM_TEST_SINGLE_HEADER="\\\"qvm.hpp\\\"" ;
Expand Down
Loading