mirror of
https://github.com/boostorg/sort.git
synced 2026-01-19 04:42:11 +00: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,21 +5,24 @@
|
||||
|
||||
require-b2 5.2 ;
|
||||
|
||||
constant boost_dependencies :
|
||||
/boost/config//boost_config
|
||||
/boost/core//boost_core
|
||||
/boost/range//boost_range
|
||||
/boost/static_assert//boost_static_assert
|
||||
/boost/type_traits//boost_type_traits ;
|
||||
|
||||
project /boost/sort
|
||||
: common-requirements
|
||||
<library>/boost/config//boost_config
|
||||
<library>/boost/core//boost_core
|
||||
<library>/boost/range//boost_range
|
||||
<library>/boost/static_assert//boost_static_assert
|
||||
<library>/boost/type_traits//boost_type_traits
|
||||
<include>include
|
||||
;
|
||||
|
||||
explicit
|
||||
[ alias boost_sort ]
|
||||
[ alias boost_sort : : : : <library>$(boost_dependencies) ]
|
||||
[ alias all : boost_sort example test ]
|
||||
;
|
||||
|
||||
call-if
|
||||
: boost-library sort
|
||||
;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user