mirror of
https://github.com/boostorg/array.git
synced 2025-07-30 04:37:21 +02:00
Move inter-lib dependencies to a project variable and into the build targets.
This commit is contained in:
15
build.jam
15
build.jam
@ -5,20 +5,23 @@
|
|||||||
|
|
||||||
require-b2 5.2 ;
|
require-b2 5.2 ;
|
||||||
|
|
||||||
|
constant boost_dependencies :
|
||||||
|
/boost/assert//boost_assert
|
||||||
|
/boost/config//boost_config
|
||||||
|
/boost/core//boost_core
|
||||||
|
/boost/static_assert//boost_static_assert
|
||||||
|
/boost/throw_exception//boost_throw_exception ;
|
||||||
|
|
||||||
project /boost/array
|
project /boost/array
|
||||||
: common-requirements
|
: common-requirements
|
||||||
<library>/boost/assert//boost_assert
|
|
||||||
<library>/boost/config//boost_config
|
|
||||||
<library>/boost/core//boost_core
|
|
||||||
<library>/boost/static_assert//boost_static_assert
|
|
||||||
<library>/boost/throw_exception//boost_throw_exception
|
|
||||||
<include>include
|
<include>include
|
||||||
;
|
;
|
||||||
|
|
||||||
explicit
|
explicit
|
||||||
[ alias boost_array ]
|
[ alias boost_array : : : : <library>$(boost_dependencies) ]
|
||||||
[ alias all : boost_array test ]
|
[ alias all : boost_array test ]
|
||||||
;
|
;
|
||||||
|
|
||||||
call-if : boost-library array
|
call-if : boost-library array
|
||||||
;
|
;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user