Skip to content

Commit d8ba580

Browse files
committed
Split b2 dependencies into public and private.
1 parent 49477cc commit d8ba580

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

build.jam

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
require-b2 5.2 ;
77

88
constant boost_dependencies :
9-
/boost/assert//boost_assert
109
/boost/config//boost_config
1110
/boost/container_hash//boost_container_hash
1211
/boost/core//boost_core

build/Jamfile.v2

+5
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,15 @@ import config : requires ;
1111
import feature ;
1212
import property ;
1313

14+
constant boost_dependencies_private :
15+
/boost/assert//boost_assert
16+
;
17+
1418
project
1519
: common-requirements <library>$(boost_dependencies)
1620
: requirements
1721
[ requires cxx11_rvalue_references ]
22+
<library>$(boost_dependencies_private)
1823
: default-build
1924
<visibility>hidden
2025
;

0 commit comments

Comments
 (0)