Skip to content

Commit 5a8d096

Browse files
grafikrobotstefanseefeld
authored andcommitted
Split b2 dependencies into public and private.
1 parent 30bdbf3 commit 5a8d096

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

build.jam

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,11 @@ constant boost_dependencies :
1414
/boost/detail//boost_detail
1515
/boost/foreach//boost_foreach
1616
/boost/function//boost_function
17-
/boost/graph//boost_graph
18-
/boost/integer//boost_integer
1917
/boost/iterator//boost_iterator
2018
/boost/lexical_cast//boost_lexical_cast
2119
/boost/mpl//boost_mpl
2220
/boost/numeric_conversion//boost_numeric_conversion
2321
/boost/preprocessor//boost_preprocessor
24-
/boost/property_map//boost_property_map
25-
/boost/smart_ptr//boost_smart_ptr
2622
/boost/static_assert//boost_static_assert
2723
/boost/tuple//boost_tuple
2824
/boost/type_traits//boost_type_traits

build/Jamfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,17 @@ else
3030
;
3131
}
3232

33+
constant boost_dependencies_private :
34+
/boost/graph//boost_graph
35+
/boost/integer//boost_integer
36+
/boost/property_map//boost_property_map
37+
/boost/smart_ptr//boost_smart_ptr
38+
;
39+
3340
project
3441
: source-location ../src
3542
: common-requirements <library>$(boost_dependencies)
43+
: requirements <library>$(boost_dependencies_private)
3644
;
3745

3846
rule cond ( test ? : yes * : no * ) { if $(test) { return $(yes) ; } else { return $(no) ; } }

0 commit comments

Comments
 (0)