diff --git a/build.jam b/build.jam index c0eb919..e483560 100644 --- a/build.jam +++ b/build.jam @@ -5,21 +5,24 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/concept_check//boost_concept_check + /boost/config//boost_config + /boost/core//boost_core + /boost/integer//boost_integer + /boost/logic//boost_logic + /boost/mp11//boost_mp11 ; + project /boost/safe_numerics : common-requirements - /boost/concept_check//boost_concept_check - /boost/config//boost_config - /boost/core//boost_core - /boost/integer//boost_integer - /boost/logic//boost_logic - /boost/mp11//boost_mp11 include ; explicit - [ alias boost_safe_numerics ] + [ alias boost_safe_numerics : : : : $(boost_dependencies) ] [ alias all : boost_safe_numerics example test ] ; call-if : boost-library safe_numerics ; +