Skip to content

Commit 36f1ea6

Browse files
committed
Split b2 dependencies into public and private.
1 parent aaaa80d commit 36f1ea6

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

build.jam

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ constant boost_dependencies :
1111
/boost/config//boost_config
1212
/boost/core//boost_core
1313
/boost/detail//boost_detail
14-
/boost/function//boost_function
1514
/boost/integer//boost_integer
1615
/boost/io//boost_io
1716
/boost/iterator//boost_iterator

build/Jamfile.v2

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,16 @@ require-b2 5.0.1 ;
1010
import-search /boost/config/checks ;
1111
import config : requires ;
1212

13+
constant boost_dependencies_private :
14+
/boost/function//boost_function
15+
;
16+
1317
project
1418
: source-location ../src
1519
: common-requirements <library>$(boost_dependencies)
1620
: requirements
1721
<conditional>@include-spirit
22+
<library>$(boost_dependencies_private)
1823
: usage-requirements
1924
<define>BOOST_SERIALIZATION_NO_LIB=1
2025
;

0 commit comments

Comments
 (0)