diff --git a/build.jam b/build.jam index 7adb65de..e9eb1a11 100644 --- a/build.jam +++ b/build.jam @@ -14,15 +14,11 @@ constant boost_dependencies : /boost/detail//boost_detail /boost/foreach//boost_foreach /boost/function//boost_function - /boost/graph//boost_graph - /boost/integer//boost_integer /boost/iterator//boost_iterator /boost/lexical_cast//boost_lexical_cast /boost/mpl//boost_mpl /boost/numeric_conversion//boost_numeric_conversion /boost/preprocessor//boost_preprocessor - /boost/property_map//boost_property_map - /boost/smart_ptr//boost_smart_ptr /boost/static_assert//boost_static_assert /boost/tuple//boost_tuple /boost/type_traits//boost_type_traits diff --git a/build/Jamfile b/build/Jamfile index dfc1e92d..c8f9859c 100644 --- a/build/Jamfile +++ b/build/Jamfile @@ -30,9 +30,17 @@ else ; } +constant boost_dependencies_private : + /boost/graph//boost_graph + /boost/integer//boost_integer + /boost/property_map//boost_property_map + /boost/smart_ptr//boost_smart_ptr + ; + project : source-location ../src : common-requirements $(boost_dependencies) + : requirements $(boost_dependencies_private) ; rule cond ( test ? : yes * : no * ) { if $(test) { return $(yes) ; } else { return $(no) ; } }