Skip to content

Commit 47a41e5

Browse files
committed
Change Boost Test build refs to work with both old and modular test lib targets.
1 parent 6e63cd0 commit 47a41e5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

tools/console_test_runner/Jamfile.v2

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# (C) Copyright Gennadiy Rozental 2008-2014.
2-
# Use, modification, and distribution are subject to the
3-
# Boost Software License, Version 1.0. (See accompanying file
2+
# Use, modification, and distribution are subject to the
3+
# Boost Software License, Version 1.0. (See accompanying file
44
# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
55
#
66
# See http://www.boost.org/libs/test for the library home page.
@@ -10,29 +10,29 @@ project libs/test/tools/console_test_runner ;
1010

1111
alias unit_test_framework
1212
: # sources
13-
/boost//unit_test_framework
14-
;
13+
/boost/test//boost_unit_test_framework
14+
;
1515

1616
alias test_runner_src
1717
: # sources
1818
src/console_test_runner.cpp
19-
unit_test_framework
20-
;
19+
unit_test_framework
20+
;
2121

2222
# make aliases explicit so the libraries will only be built when requested
2323
explicit unit_test_framework ;
2424
explicit test_runner_src ;
2525

26-
lib dl ;
26+
lib dl ;
2727

28-
lib test_runner_test : test/test_runner_test.cpp unit_test_framework ;
28+
lib test_runner_test : test/test_runner_test.cpp unit_test_framework ;
2929

30-
exe console_test_runner
30+
exe console_test_runner
3131
: test_runner_src
32-
dl
32+
dl
3333
;
3434

35-
exe console_test_runner
35+
exe console_test_runner
3636
: test_runner_src
3737
: <target-os>windows
3838
;

0 commit comments

Comments
 (0)