Skip to content

Commit 897765e

Browse files
authored
Move project dependencies to specific targets.
1 parent cc87b13 commit 897765e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

test/Jamfile.v2

+3-5
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ project
1616
: requirements
1717
<toolset>gcc:<cxxflags>-Wno-deprecated-declarations
1818
<library>/boost/core//boost_core
19-
<library>/boost/detail//boost_detail
20-
<library>/boost/type_traits//boost_type_traits
2119
;
2220

2321

@@ -92,9 +90,9 @@ test-suite config
9290
[ run config_info.cpp : : : <test-info>always_show_run_output <exception-handling>off
9391
<target-os>vxworks:<build>no
9492
: config_info_no_except ]
95-
[ run math_info.cpp : : : <test-info>always_show_run_output <toolset>borland:<runtime-link>static <toolset>borland:<link>static ]
93+
[ run math_info.cpp : : : <library>/boost/type_traits//boost_type_traits <test-info>always_show_run_output <toolset>borland:<runtime-link>static <toolset>borland:<link>static ]
9694
[ run abi/abi_test.cpp abi/main.cpp ]
97-
[ run limits_test.cpp ]
95+
[ run limits_test.cpp : : : <library>/boost/detail//boost_detail ]
9896
[ run link/main.cpp link//link_test
9997
: #args
10098
: #input-files
@@ -129,7 +127,7 @@ explicit has_clang_implicit_fallthrough ;
129127

130128
exe config_info_printer : config_info.cpp ;
131129
explicit config_info_printer ;
132-
exe math_info_printer : math_info.cpp ;
130+
exe math_info_printer : math_info.cpp : <library>/boost/type_traits//boost_type_traits ;
133131
explicit math_info_printer ;
134132

135133
actions print-run

0 commit comments

Comments
 (0)