mirror of
https://github.com/boostorg/utility.git
synced 2025-07-29 20:37:32 +02:00
Move inter-lib dependencies to a project variable and into the build targets.
This commit is contained in:
19
build.jam
19
build.jam
@ -5,22 +5,25 @@
|
|||||||
|
|
||||||
require-b2 5.2 ;
|
require-b2 5.2 ;
|
||||||
|
|
||||||
|
constant boost_dependencies :
|
||||||
|
/boost/assert//boost_assert
|
||||||
|
/boost/config//boost_config
|
||||||
|
/boost/core//boost_core
|
||||||
|
/boost/io//boost_io
|
||||||
|
/boost/preprocessor//boost_preprocessor
|
||||||
|
/boost/throw_exception//boost_throw_exception
|
||||||
|
/boost/type_traits//boost_type_traits ;
|
||||||
|
|
||||||
project /boost/utility
|
project /boost/utility
|
||||||
: common-requirements
|
: common-requirements
|
||||||
<library>/boost/assert//boost_assert
|
|
||||||
<library>/boost/config//boost_config
|
|
||||||
<library>/boost/core//boost_core
|
|
||||||
<library>/boost/io//boost_io
|
|
||||||
<library>/boost/preprocessor//boost_preprocessor
|
|
||||||
<library>/boost/throw_exception//boost_throw_exception
|
|
||||||
<library>/boost/type_traits//boost_type_traits
|
|
||||||
<include>include
|
<include>include
|
||||||
;
|
;
|
||||||
|
|
||||||
explicit
|
explicit
|
||||||
[ alias boost_utility ]
|
[ alias boost_utility : : : : <library>$(boost_dependencies) ]
|
||||||
[ alias all : boost_utility test ]
|
[ alias all : boost_utility test ]
|
||||||
;
|
;
|
||||||
|
|
||||||
call-if : boost-library utility
|
call-if : boost-library utility
|
||||||
;
|
;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user