Skip to content

Commit 98bb6f3

Browse files
authored
Merge pull request #52 from grafikrobot/modular
Add support for modular build structure.
2 parents daabde8 + e572e47 commit 98bb6f3

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

build.jam

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright René Ferdinand Rivera Morell 2023-2024
2+
# Distributed under the Boost Software License, Version 1.0.
3+
# (See accompanying file LICENSE_1_0.txt or copy at
4+
# http://www.boost.org/LICENSE_1_0.txt)
5+
6+
require-b2 5.2 ;
7+
8+
project /boost/qvm
9+
;
10+
11+
explicit
12+
[ alias boost_qvm : : :
13+
: <include>include <library>$(boost_dependencies) ]
14+
[ alias all : boost_qvm test ]
15+
;
16+
17+
call-if : boost-library qvm
18+
;
19+

test/Jamfile.v2

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
project
77
: requirements
8-
<include>../include
8+
<library>/boost/core//boost_core
9+
<library>/boost/exception//boost_exception
10+
<library>/boost/test//included
911
;
1012

1113
variant debug_qvm_hpp : debug : <define>BOOST_QVM_TEST_SINGLE_HEADER="\\\"qvm.hpp\\\"" ;

0 commit comments

Comments
 (0)