Move inter-lib dependencies to a project variable and into the build targets.

This commit is contained in:
Rene Rivera
2024-07-23 22:34:23 -05:00
committed by Jim King
parent f778402266
commit 23c2f1cdcc
+10 -7
View File
@@ -5,22 +5,25 @@
require-b2 5.2 ;
constant boost_dependencies :
/boost/assert//boost_assert
/boost/config//boost_config
/boost/integer//boost_integer
/boost/throw_exception//boost_throw_exception
/boost/type_traits//boost_type_traits
/boost/winapi//boost_winapi ;
project /boost/pool
: common-requirements
<library>/boost/assert//boost_assert
<library>/boost/config//boost_config
<library>/boost/integer//boost_integer
<library>/boost/throw_exception//boost_throw_exception
<library>/boost/type_traits//boost_type_traits
<library>/boost/winapi//boost_winapi
<include>include
;
explicit
[ alias boost_pool ]
[ alias boost_pool : : : : <library>$(boost_dependencies) ]
[ alias all : boost_pool example test ]
;
call-if
: boost-library pool
;