From 897765e3482be7d14e3027e8d6a126f0e7f73d35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Ferdinand=20Rivera=20Morell?= Date: Tue, 15 Apr 2025 14:49:59 -0500 Subject: [PATCH] Move project dependencies to specific targets. --- test/Jamfile.v2 | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index e97fb911..fa4bdbd7 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -16,8 +16,6 @@ project : requirements gcc:-Wno-deprecated-declarations /boost/core//boost_core - /boost/detail//boost_detail - /boost/type_traits//boost_type_traits ; @@ -92,9 +90,9 @@ test-suite config [ run config_info.cpp : : : always_show_run_output off vxworks:no : config_info_no_except ] - [ run math_info.cpp : : : always_show_run_output borland:static borland:static ] + [ run math_info.cpp : : : /boost/type_traits//boost_type_traits always_show_run_output borland:static borland:static ] [ run abi/abi_test.cpp abi/main.cpp ] - [ run limits_test.cpp ] + [ run limits_test.cpp : : : /boost/detail//boost_detail ] [ run link/main.cpp link//link_test : #args : #input-files @@ -129,7 +127,7 @@ explicit has_clang_implicit_fallthrough ; exe config_info_printer : config_info.cpp ; explicit config_info_printer ; -exe math_info_printer : math_info.cpp ; +exe math_info_printer : math_info.cpp : /boost/type_traits//boost_type_traits ; explicit math_info_printer ; actions print-run