mirror of
https://github.com/boostorg/array.git
synced 2025-07-29 12:17:40 +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 ;
|
||||
|
||||
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
|
||||
: 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
|
||||
;
|
||||
|
||||
explicit
|
||||
[ alias boost_array ]
|
||||
[ alias boost_array : : : : <library>$(boost_dependencies) ]
|
||||
[ alias all : boost_array test ]
|
||||
;
|
||||
|
||||
call-if : boost-library array
|
||||
;
|
||||
|
||||
|
Reference in New Issue
Block a user