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 ;
|
||||
|
||||
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
|
||||
: 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
|
||||
;
|
||||
|
||||
explicit
|
||||
[ alias boost_tuple ]
|
||||
[ alias boost_tuple : : : : <library>$(boost_dependencies) ]
|
||||
[ alias all : boost_tuple test ]
|
||||
;
|
||||
|
||||
call-if : boost-library tuple
|
||||
;
|
||||
|
||||
|
Reference in New Issue
Block a user