Skip to content

Commit acf2445

Browse files
committedAug 28, 2024·
Update build.jam, test/Jamfile
1 parent f78343e commit acf2445

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed
 

‎build.jam

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,22 @@
1-
# Copyright René Ferdinand Rivera Morell 2023-2024
1+
# Copyright 2023-2024 René Ferdinand Rivera Morell
2+
# Copyright 2024 Peter Dimov
23
# 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)
4+
# https://www.boost.org/LICENSE_1_0.txt
55

66
require-b2 5.2 ;
77

88
constant boost_dependencies :
99
/boost/assert//boost_assert
1010
/boost/config//boost_config
11-
/boost/mp11//boost_mp11 ;
12-
13-
project /boost/variant2
14-
: common-requirements
15-
<include>include
11+
/boost/mp11//boost_mp11
1612
;
1713

14+
project /boost/variant2 ;
15+
1816
explicit
19-
[ alias boost_variant2 : : : : <library>$(boost_dependencies) ]
17+
[ alias boost_variant2 : : : : <include>include <library>$(boost_dependencies) ]
2018
[ alias all : boost_variant2 test ]
2119
;
2220

2321
call-if : boost-library variant2
2422
;
25-

‎test/Jamfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ project
1616
<warnings>extra
1717

1818
: requirements
19-
<library>/boost/config//boost_config
20-
<library>/boost/container_hash//boost_container_hash
19+
20+
<library>/boost/variant2//boost_variant2
2121
<library>/boost/core//boost_core
22+
<library>/boost/container_hash//boost_container_hash
2223

2324
<toolset>msvc:<warnings-as-errors>on
2425
<toolset>gcc:<warnings-as-errors>on

0 commit comments

Comments
 (0)
Please sign in to comment.