forked from boostorg/tuple
Move inter-lib dependencies to a project variable and into the build targets.
This commit is contained in:
13
build.jam
13
build.jam
@ -5,19 +5,22 @@
|
|||||||
|
|
||||||
require-b2 5.2 ;
|
require-b2 5.2 ;
|
||||||
|
|
||||||
|
constant boost_dependencies :
|
||||||
|
/boost/config//boost_config
|
||||||
|
/boost/core//boost_core
|
||||||
|
/boost/static_assert//boost_static_assert
|
||||||
|
/boost/type_traits//boost_type_traits ;
|
||||||
|
|
||||||
project /boost/tuple
|
project /boost/tuple
|
||||||
: common-requirements
|
: common-requirements
|
||||||
<library>/boost/config//boost_config
|
|
||||||
<library>/boost/core//boost_core
|
|
||||||
<library>/boost/static_assert//boost_static_assert
|
|
||||||
<library>/boost/type_traits//boost_type_traits
|
|
||||||
<include>include
|
<include>include
|
||||||
;
|
;
|
||||||
|
|
||||||
explicit
|
explicit
|
||||||
[ alias boost_tuple ]
|
[ alias boost_tuple : : : : <library>$(boost_dependencies) ]
|
||||||
[ alias all : boost_tuple test ]
|
[ alias all : boost_tuple test ]
|
||||||
;
|
;
|
||||||
|
|
||||||
call-if : boost-library tuple
|
call-if : boost-library tuple
|
||||||
;
|
;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user