From 47a41e52ca3d9e44ecc43e71df7fc48e78a2bea5 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Thu, 8 Aug 2024 21:45:19 -0500 Subject: [PATCH] Change Boost Test build refs to work with both old and modular test lib targets. --- tools/console_test_runner/Jamfile.v2 | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tools/console_test_runner/Jamfile.v2 b/tools/console_test_runner/Jamfile.v2 index c95e71811e..cbc6ff29e3 100644 --- a/tools/console_test_runner/Jamfile.v2 +++ b/tools/console_test_runner/Jamfile.v2 @@ -1,6 +1,6 @@ # (C) Copyright Gennadiy Rozental 2008-2014. -# Use, modification, and distribution are subject to the -# Boost Software License, Version 1.0. (See accompanying file +# Use, modification, and distribution are subject to the +# Boost Software License, Version 1.0. (See accompanying file # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) # # See http://www.boost.org/libs/test for the library home page. @@ -10,29 +10,29 @@ project libs/test/tools/console_test_runner ; alias unit_test_framework : # sources - /boost//unit_test_framework - ; + /boost/test//boost_unit_test_framework + ; alias test_runner_src : # sources src/console_test_runner.cpp - unit_test_framework - ; + unit_test_framework + ; # make aliases explicit so the libraries will only be built when requested explicit unit_test_framework ; explicit test_runner_src ; -lib dl ; +lib dl ; -lib test_runner_test : test/test_runner_test.cpp unit_test_framework ; +lib test_runner_test : test/test_runner_test.cpp unit_test_framework ; -exe console_test_runner +exe console_test_runner : test_runner_src - dl + dl ; -exe console_test_runner +exe console_test_runner : test_runner_src : windows ;