Skip to content

Commit 55b5a3e

Browse files
committed
Merge branch 'grafikrobot-modular' into develop
2 parents 70c57e8 + 6cd43ef commit 55b5a3e

File tree

5 files changed

+39
-17
lines changed

5 files changed

+39
-17
lines changed

Jamfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

build.jam

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
constant boost_dependencies :
9+
/boost/config//boost_config ;
10+
11+
project /boost/move
12+
: common-requirements
13+
<include>include
14+
;
15+
16+
explicit
17+
[ alias boost_move : : : : <library>$(boost_dependencies) ]
18+
[ alias all : boost_move example test ]
19+
;
20+
21+
call-if : boost-library move
22+
;
23+

doc/Jamfile.v2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Boost.Move library documentation Jamfile
22
#
3-
# Copyright Ion Gaztanaga 2009.
3+
# Copyright Ion Gaztanaga 2009.
44
# Distributed under the Boost Software License, Version 1.0.
55
# (See accompanying file LICENSE_1_0.txt or copy at
66
# http://www.boost.org/LICENSE_1_0.txt)
@@ -13,8 +13,8 @@ import quickbook ;
1313

1414
doxygen autodoc
1515
:
16-
[ glob ../../../boost/move/*.hpp ]
17-
[ glob ../../../boost/move/algo/*.hpp ]
16+
[ glob ../include/boost/move/*.hpp ]
17+
[ glob ../include/boost/move/algo/*.hpp ]
1818
:
1919
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
2020
<doxygen:param>HIDE_UNDOC_MEMBERS=YES

example/Jamfile.v2

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
#
1010
import testing ;
1111

12+
project : requirements
13+
<library>/boost/container//boost_container
14+
<library>/boost/type_traits//boost_type_traits
15+
;
16+
1217
rule test_all
1318
{
1419
local all_rules = ;
@@ -25,7 +30,7 @@ rule test_all
2530
return $(all_rules) ;
2631
}
2732

28-
test-suite move_example : [ test_all r ]
33+
test-suite move_example : [ test_all r ]
2934
: <link>static
3035
;
31-
36+

test/Jamfile.v2

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99

1010
import testing ;
1111

12+
project : requirements
13+
<library>/boost/core//boost_core
14+
<library>/boost/container//boost_container
15+
;
16+
1217
rule test_all
1318
{
1419
local all_rules = ;
@@ -26,4 +31,4 @@ rule test_all
2631
}
2732

2833
test-suite move_test : [ test_all r ] ;
29-
34+

0 commit comments

Comments
 (0)