mirror of
https://github.com/boostorg/test.git
synced 2026-02-15 01:22:08 +00:00
80 lines
2.0 KiB
Plaintext
80 lines
2.0 KiB
Plaintext
# (C) Copyright boost 2004.
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt)
|
|
#
|
|
# See http://www.boost.org/libs/test for the library home page.
|
|
|
|
project boost/test
|
|
: source-location ../src
|
|
: requirements <link>shared:<define>BOOST_TEST_DYN_LINK=1
|
|
<toolset>msvc:<asynch-exceptions>on
|
|
<toolset>borland:<cxxflags>-w-8080
|
|
# Disable Warning about boost::noncopyable not being exported
|
|
<link>shared,<toolset>msvc:<cxxflags>-wd4275
|
|
: usage-requirements
|
|
<define>BOOST_TEST_NO_AUTO_LINK=1
|
|
<link>shared:<define>BOOST_TEST_DYN_LINK=1
|
|
# Disable Warning about boost::noncopyable not being exported
|
|
<link>shared,<toolset>msvc:<cxxflags>-wd4275
|
|
;
|
|
|
|
PRG_EXEC_MON_SOURCES =
|
|
execution_monitor
|
|
cpp_main
|
|
;
|
|
|
|
TEST_EXEC_MON_SOURCES =
|
|
compiler_log_formatter
|
|
execution_monitor
|
|
framework
|
|
plain_report_formatter
|
|
progress_monitor
|
|
results_collector
|
|
results_reporter
|
|
test_main
|
|
test_tools
|
|
unit_test_log
|
|
unit_test_main
|
|
unit_test_monitor
|
|
unit_test_parameters
|
|
unit_test_suite
|
|
xml_log_formatter
|
|
xml_report_formatter
|
|
;
|
|
|
|
UTF_SOURCES =
|
|
compiler_log_formatter
|
|
exception_safety
|
|
execution_monitor
|
|
framework
|
|
interaction_based
|
|
logged_expectations
|
|
plain_report_formatter
|
|
progress_monitor
|
|
results_collector
|
|
results_reporter
|
|
test_tools
|
|
unit_test_log
|
|
unit_test_main
|
|
unit_test_monitor
|
|
unit_test_parameters
|
|
unit_test_suite
|
|
xml_log_formatter
|
|
xml_report_formatter
|
|
;
|
|
|
|
lib boost_prg_exec_monitor : $(PRG_EXEC_MON_SOURCES).cpp ;
|
|
|
|
lib boost_test_exec_monitor : $(TEST_EXEC_MON_SOURCES).cpp : <link>static ;
|
|
|
|
lib boost_unit_test_framework : $(UTF_SOURCES).cpp ;
|
|
|
|
|
|
alias minimal : : : :
|
|
<toolset>msvc:<asynch-exceptions>on
|
|
;
|
|
|
|
alias included : : : :
|
|
<toolset>msvc:<asynch-exceptions>on
|
|
;
|